- OpenAI
- Claude
- Midjourney
- 翻译
- 文心一言
- Stable Diffusion
文生图
POST
https://api.aigc2d.com/sd/txt2img
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
main_model_id
integer
可选
batch_size
integer
可选
默认值:
1
steps
integer
可选
默认值:
20
cfg_scale
number <float64>
可选
默认值:
7.5
seed
integer
随机数种子
默认值:
-1
sampler
enum<string> <string>
采样器
枚举值:
Euler aEulerLMSHeunDPM2DPM2 aDPM++ 2S aDPM++ 2MDPM++ SDEDPM++ 2M SDEDPM fastDPM adaptiveLMS KarrasDPM2 KarrasDPM2 a KarrasDPM++ 2S a KarrasDPM++ 2M KarrasDPM++ SDE KarrasDPM++ 2M SDE KarrasDDIMPLMSUniPC
默认值:
Euler
width
integer
可选
height
integer
可选
clip_skip
integer
ClipSkip
默认值:
1
translate_prompt
boolean
可选
默认值:
false
positive_prompts
array[string <string>]
正面提示词
negative_prompts
array[string <string>]
反面提示词
enable_control_net
boolean
可选
control_net_params
array [object {12}]
可选
control_net_img
string <string>
可选
control_pre_set_id
string <string>
可选
control_weight
number <float64>
可选
model_id
integer
可选
pre_processor_id
integer
可选
starting_control_step
integer
可选
ending_control_step
integer
可选
control_mode
string <string>
可选
resize_mode
string <string>
可选
pre_processor_resolution
integer
可选
param_1_value
number <float64>
参数1
param_2_value
number <float64>
参数2
use_custom_main_model_vae
boolean
可选
示例
{
"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
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aigc2d.com/sd/txt2img' \
--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
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
task_id
integer
任务ID
message
string
必需
data
null
必需
示例
{
"code": 0,
"task_id": 474195782291461,
"message": "success",
"data": null
}
🟠400请求有误
修改于 2023-10-23 01:11:09