# Z Image Turbo - Documentation

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown is available with `Accept: text/markdown` and `.md` URL variants.

Source: /docs/api-reference/model-apis-z-image-turbo

# Z Image Turbo

POST

/

v3

/

async

/

z-image-turbo

Z Image Turbo

cURL

```
curl --request POST \
--url https://api.novita.ai/v3/async/z-image-turbo \
--header 'Authorization: &#x3C;authorization>' \
--header 'Content-Type: &#x3C;content-type>' \
--data '
{
"seed": 123,
"size": "&#x3C;string>",
"prompt": "&#x3C;string>",
"enable_base64_output": true
}
'
```

200

```
{
"task_id": "&#x3C;string>"
}
```

Z-Image Turbo is a high-speed image generation model that supports rapid generation of high-quality images based on text prompts.

This is an asynchronous API; only the task_id will be returned. You should use the task_id to request the [Task Result API](/docs/api-reference/model-apis-task-result) to retrieve the video generation results.

##

[​](#request-headers)

Request Headers

[​](#param-content-type)

Content-Type

string

required

Supports: `application/json`

[​](#param-authorization)

Authorization

string

required

Bearer authentication format, for example: Bearer {{API Key}}.

##

[​](#request-body)

Request Body

[​](#param-seed)

seed

integer

Random seed for generation. -1 means using a random seed. Range: -1 to 2147483647Value range: [-1, 2147483647]

[​](#param-size)

size

string

default:"1024*1024"

Pixel dimensions of the generated image (width*height). Each dimension ranges from 256 to 1536 pixels

[​](#param-prompt)

prompt

string

required

Positive prompt for generation

[​](#param-enable-base64-output)

enable_base64_output

boolean

default:false

If enabled, the output will be encoded as a BASE64 string instead of a URL. This property is only available via API

##

[​](#response)

Response

[​](#param-task-id)

task_id

string

required

Use the task_id to request the [Task Result API](/docs/api-reference/model-apis-task-result) to retrieve the generated outputs.

Last modified on December 19, 2025
