Metin prompt’larından görseller oluşturmak, stili kontrol etmek, boyutları seçmek ve base64 veya URL döndürmek için CometAPI’yi OpenAI POST /v1/images/generations ile kullanın.
curl --request POST \
--url https://api.cometapi.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "dall-e-3",
"prompt": "A paper boat floating on calm water at sunrise."
}
'{
"created": 1773311889,
"data": [
{
"revised_prompt": "A paper boat floating on calm water at sunrise, with soft golden light reflecting off the water's surface.",
"url": "https://filesystem.site/cdn/20260312/1d6826050921c07a13ff173310c640.webp"
}
]
}dall-e-3 kullanıngpt-image-1, gpt-image-1-mini veya gpt-image-1.5 kullanınqwen-image kullanın, ancak n değerini 1 olarak tutundall-e-3 ile başlayınsize değerini 1024x1024 olarak tutunresponse_format: "url" ayarlayındall-e-2 ve dall-e-3, URL yanıtlarını ve base64 yanıtlarını desteklergpt-image-1, gpt-image-1-mini ve gpt-image-1.5, base64 öncelikli rotalar olarak değerlendirilmelidirqwen-image, n > 1 desteği sunmazresponse_format: "url" içeren bir dall-e-3 isteği normal bir created zaman damgası, bir revised_prompt ve geçici bir görsel URL’si döndürdü.Bearer token authentication. Use your CometAPI key.
The image generation model to use. Choose a current model from the Models page.
Text description of the image you want to generate.
"A paper boat floating on calm water at sunrise."
Number of images to generate. Keep this at 1 for the broadest compatibility.
Requested output size. Supported values depend on the selected model.
"1024x1024"
Requested output encoding for models that support it.
url, b64_json curl --request POST \
--url https://api.cometapi.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "dall-e-3",
"prompt": "A paper boat floating on calm water at sunrise."
}
'{
"created": 1773311889,
"data": [
{
"revised_prompt": "A paper boat floating on calm water at sunrise, with soft golden light reflecting off the water's surface.",
"url": "https://filesystem.site/cdn/20260312/1d6826050921c07a13ff173310c640.webp"
}
]
}