魔术混合接口
POST
https://stablediffusionapi.com/api/v5/magic_mix该接口允许您神奇地混合图像并提示生成引人注目的图像
POST
向 https://stablediffusionapi.com/api/v3/magic_mix 接口发出请求,并将所需参数作为请求正文传递到接口。
请求参数
Body 参数application/json
key
string
必需
您用于请求授权的 API Key
prompt
string
必需
文本提示,包含您想要在图像中生成的内容的描述
height
integer
必需
最大高度:默认768
width
integer
必需
最大高度:默认768
image
string
必需
您想要魔法混合的图像的 URL
kmax
number
必需
选修的。最大 k 值。默认为0.5
kmin
number
必需
选修的。最小 k 值。默认为0.3
mix_factor
number
必需
选修的。任务的混合因素。默认为0.5
samples
integer
必需
作为响应返回的图像数量。最大值为 4。
negative_prompt
string
必需
图像中您不想要的项目
seed
integer
必需
种子用于重现结果,相同的种子将再次为您提供相同的图像。为 a传递null
steps
integer
必需
去噪步骤数(最小:1;最大:50)默认为20
webhook
null
必需
设置 URL 以在图像生成完成后获取 POST API 调用。
track_id
null
必需
此 ID 在 Webhook API 调用的响应中返回。这将用于识别 Webhook 请求。
示例
{
"key": "",
"prompt": "Bed",
"height": 768,
"width": 768,
"image": "https://user-images.githubusercontent.com/59410571/209578593-141467c7-d831-4792-8b9a-b17dc5e47816.jpg",
"kmax": 0.5,
"kmin": 0.3,
"mix_factor": 0.5,
"samples": 1,
"negative_prompt": "low quality",
"seed": 1829183163,
"steps": 20,
"webhook": null,
"track_id": null
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
generationTime
number
必需
id
integer
必需
output
array[string]
必需
meta
object
必需
H
integer
必需
W
integer
必需
file_prefix
string
必需
image
string
必需
kmax
number
必需
kmin
number
必需
mix_factor
number
必需
n_samples
integer
必需
negative_prompt
string
必需
outdir
string
必需
prompt
string
必需
seed
integer
必需
steps
integer
必需
示例
{
"status": "success",
"generationTime": 7.986585378646851,
"id": 511,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/424151c6-00fd-4837-aaef-8b98a5c09f38.png"
],
"meta": {
"H": 768,
"W": 768,
"file_prefix": "424151c6-00fd-4837-aaef-8b98a5c09f38",
"image": "https://user-images.githubusercontent.com/59410571/209578593-141467c7-d831-4792-8b9a-b17dc5e47816.jpg",
"kmax": 0.5,
"kmin": 0.3,
"mix_factor": 0.5,
"n_samples": 1,
"negative_prompt": "low quality",
"outdir": "out",
"prompt": "Bed",
"seed": 1829183163,
"steps": 20
}
}
最后修改时间: 1 年前