Skip to main content
POST
/
v3
/
async
/
hunyuan-image-3
Hunyuan Image 3
curl --request POST \
  --url https://api.novita.ai/v3/async/hunyuan-image-3 \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "prompt": "<string>",
  "size": "<string>",
  "seed": 123
}'
{
  "task_id": "<string>"
}
Hunyuan Image 3.0 is a state-of-the-art text-to-image generation model. By simply providing a written prompt, you can create high-quality images that capture the essence of your story, resonate emotionally, and elevate your creative output.
This is an asynchronous API; only the task_id will be returned. You should use the task_id to request the Task Result API to retrieve the generation results.

Request Headers

Content-Type
string
required
Supports: application/json
Authorization
string
required
Bearer authentication format, for example: Bearer {{API Key}}.

Request Body

prompt
string
required
The positive prompt for the generation.
size
string
The size of the generated media in pixels (width*height). Range [256 ~ 1536 per dimension]. Default is 1024*1024.
seed
integer
The random seed to use for the generation. -1 means a random seed will be used. Range [-1 ~ 2147483647]. Default is -1.

Response

task_id
string
required
Use the task_id to request the Task Result API to retrieve the generated outputs.
I