AIGC2D官方地址为:https://www.aigc2d.com
API接口地址为:https://api.aigc2d.com
Authorization: Bearer ********************
{
"sampler": "Euler",
"width": 512,
"clip_skip": 1,
"main_model_id": 1,
"use_custom_main_model_vae": false,
"batch_size": 1,
"enable_control_net": false,
"negative_prompts": [],
"translate_prompt": true,
"seed": -1,
"cfg_scale": 7.5,
"height": 512,
"positive_prompts": [
"a apple"
],
"steps": 20
}
curl --location --request POST 'https://api.aigc2d.com/sd/img2img' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"sampler": "Euler",
"width": 512,
"clip_skip": 1,
"main_model_id": 1,
"use_custom_main_model_vae": false,
"batch_size": 1,
"enable_control_net": false,
"negative_prompts": [],
"translate_prompt": true,
"seed": -1,
"cfg_scale": 7.5,
"height": 512,
"positive_prompts": [
"a apple"
],
"steps": 20
}'
{
"code": 0,
"task_id": 474195782291461,
"message": "success",
"data": null
}