---
title: "z-image-turbo-small"
url: "https://docs.api.pruna.ai/guides/models/z-image-turbo-small"
image: "https://docs.api.pruna.ai/_og/d/c_Ocean.takumi,title_z-image-turbo-small,props_eyJ0aGVtZSI6eyJtb2RlIjoibGlnaHQiLCJjb2xvcnMiOnsicHJpbWFyeSI6IiM3YzNhZWQifX19,p_Ii9ndWlkZXMvbW9kZWxzL3otaW1hZ2UtdHVyYm8tc21hbGwi,s_iJcPdOQNmNUAIwtv.png"
---

# Z Image Turbo Small

## [Overview](#overview)

**Rate Limit:** 1000 requests per minute

**Category:** Image Generation

**Price:** $0.0025 / image

---

## [Quickstart](#quickstart)

### [Basic Image Generation (Asynchronous)](#basic-image-generation-asynchronous)

```bash
curl -X POST 'https://api.pruna.ai/v1/predictions' \
  -H 'Content-Type: application/json' \
  -H 'apikey: YOUR_API_KEY' \
  -H 'Model: z-image-turbo-small' \
  -d '{
    "input": {
      "prompt": "Young Chinese woman in red Hanfu, intricate embroidery. Impeccable makeup, red floral forehead pattern. Elaborate high bun, golden phoenix headdress, red flowers, beads."
    }
  }'
```

### [Basic Image Generation (Synchronous)](#basic-image-generation-synchronous)

```bash
curl -X POST 'https://api.pruna.ai/v1/predictions' \
  -H 'Content-Type: application/json' \
  -H 'apikey: YOUR_API_KEY' \
  -H 'Model: z-image-turbo-small' \
  -H 'Try-Sync: true' \
  -d '{
    "input": {
      "prompt": "Young Chinese woman in red Hanfu, intricate embroidery. Impeccable makeup, red floral forehead pattern. Elaborate high bun, golden phoenix headdress, red flowers, beads."
    }
  }'
```

### [Fast Mode](#fast-mode)

```bash
curl -X POST 'https://api.pruna.ai/v1/predictions' \
  -H 'Content-Type: application/json' \
  -H 'apikey: YOUR_API_KEY' \
  -H 'Model: z-image-turbo-small' \
  -H 'Try-Sync: true' \
  -d '{
    "input": {
      "prompt": "Sunset over mountain landscape, vibrant colors, dramatic clouds",
      "go_fast": true,
      "seed": 42
    }
  }'
```

---

## [Parameters](#parameters)

### [Required Parameters](#required-parameters)

| Parameter | Type   | Description                      |
| :-------- | :----- | :------------------------------- |
| prompt    | string | Text prompt for image generation |

### [Optional Parameters](#optional-parameters)

| Parameter | Type    | Default    | Description                                          |
| :-------- | :------ | :--------- | :--------------------------------------------------- |
| seed      | integer | (optional) | Random seed. Set for reproducible generation         |
| go_fast   | boolean | false      | Apply additional optimizations for faster generation |