Flux 创建(OpenAI dall-e-3格式)
Request
Body Params application/json
{
"model": "flux-kontext-pro",
"prompt": "a beautiful landscape with a river and mountains",
"n": 1,
"aspect_ratio": "21:9"
}
Request Code Samples
curl --location '/v1/images/generations' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data '{
"model": "flux-kontext-pro",
"prompt": "a beautiful landscape with a river and mountains",
// "size": "1024x1524",
"n": 1,
"aspect_ratio": "21:9"
}'
Responses
application/json
{
"created": 1589478378,
"data": [
{
"url": "https://..."
},
{
"url": "https://..."
}
]
}
Modified at 2026-05-02 07:40:16