Authorization: Bearer ********************{
"model": "dall-e-3",
"prompt": "a white siamese cat",
"n": 1,
"size": "1024x1024",
"quality": "standard",
"response_format": "url"
}curl --location --request POST 'https://api.llmhub.com.cn/v1/images/generations' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "dall-e-3",
"prompt": "a white siamese cat",
"n": 1,
"size": "1024x1024",
"quality": "standard",
"response_format": "url"
}'{
"created": 1703432100,
"data": [
{
"url": "https://example.com/generated-image.png",
"revised_prompt": "A white Siamese cat sitting on a windowsill, digital art"
}
]
}