ImaginePro
HomeDocs
HomeDocs
  1. Zimage
  • Introduction
  • System Design
  • Get Started
  • My Account
    • Credits
    • Generation Modes
  • API Documentation
    • Generate Image
      POST
    • Get Progress
      GET
    • Upscale
      POST
    • Variation
      POST
    • Zoom
      POST
    • Pan
      POST
    • Reroll
      POST
    • Make Square
      POST
    • Cancel Job
      POST
    • Inpainting
      POST
    • Image to Text (describe)
      POST
    • Image to Image
      POST
    • Face Swap
      POST
    • Blend
      POST
    • History
      GET
    • Generate Image Boost
      POST
    • Button Boost
      POST
    • Prompt Check
      POST
    • Account Info
      GET
    • Generate Image - Flux Model
      POST
    • Remove Background
      POST
  • FLUX API Documentation
    • Generate Image
    • Upscale Image
  • Image Edit(Nanobanana) API Documentation
    • Edit/Generate Image
  • Video API Documentation
    • Generate Video By Image
    • Get Progress
    • Extend Video
  • Zimage
    • Generate image (Z-Image Turbo)
      POST
  • DIY Plan Endpoints
    • Queue Management
      • Count jobs in queue
      • Reboot the queue
      • Pause the queue
      • Resume the queue
    • Get Linked Discord Token Details
    • Update Linked Discord Token Details
    • Toggle Linked Discord Token
    • Get Message Trace
    • Get Ban Words List
    • Update Ban Words List
    • Get Linked Account List
    • Get Linked Account queue status
    • Excute MJ commad
  • Guide
    • FAQ
    • Troubleshoot
  • HowTos
    • How to get Discord token, server and channel ID
    • How to use ImaginePro web app
    • How to make ImaginePro API request in Postman
    • How to use Midjourney V6
    • How to link your own Discord account
    • How to debug the ImaginePro web app
  • Web App
    • Credits
  • Schemas
    • link-token
    • ZimageGenerateRequest
    • MessageCreateResponse
    • NestError
HomeDocs
HomeDocs
  1. Zimage

Generate image (Z-Image Turbo)

POST
https://api.imaginepro.ai/api/v1/universal/zimage
Creates a Zimage generation without any limitation.
steps max: 30
width/height max: 1024, must be divisible by 8
n is effectively fixed to 1

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Body Params application/jsonRequired

Examples
{
    "prompt": "a serene mountain landscape at sunset, photorealistic",
    "steps": 4,
    "width": 512,
    "height": 512
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://api.imaginepro.ai/api/v1/universal/zimage' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "prompt": "a serene mountain landscape at sunset, photorealistic",
    "steps": 4,
    "width": 512,
    "height": 512
}'

Responses

🟢200
application/json
Generation task created
Body

Example
{
    "success": true,
    "messageId": "01JFBK2D4R3PZ8Z7R1V7K5P8ZQ",
    "createdAt": "2025-12-16 11:59:59"
}
🟠400
🟠401
🟠403
🔴500
Modified at 2025-12-16 18:08:43
Previous
Extend Video
Next
Queue Management
Built with