# Ideogram V3 | Turbo Turbo is the fastest and cheapest Ideogram v3. v3 creates images with stunning realism, creative designs, and consistent styles ## API Information - **Model Slug:** ideogram-v3-turbo - **Branded URL:** https://www.eachlabs.ai/ideogram/ideogram-v3/ideogram-v3-turbo - **Provider:** Ideogram - **Category:** Text to Image - **Output Type:** image - **Status:** active - **Version:** 0.0.1 - **Base Cost:** Fixed price per execution: $0.03 - **Estimated Processing Time:** 20 seconds - **Last Updated:** 2026-04-06 - **Interactive Demo:** https://www.eachlabs.ai/ai-models/ideogram-v3-turbo ## Pricing - **Charge Type:** dynamic - **Estimated Price (default example):** $0.0300 - **Pricing Details:** Fixed price per execution: $0.03 ### Pricing Rules | Condition | Pricing | | --- | --- | | Rule 1 | Fixed price per execution: $0.03 | ## Input Schema | Parameter | Type | Required | Default | Constraints | Description | |-----------|------|----------|---------|-------------|-------------| | prompt | string | Yes | - | - | Text prompt for image generation | | aspect_ratio | string | No | 1:1 | 1:3,3:1,1:2,2:1,9:16,16:9,10:16,16:10,2:3,3:2,3:4,4:3,4:5,5:4,1:1 | An enumeration. | | resolution | string | No | None | None,512x1536,576x1408,576x1472,576x1536,640x1344,640x1408,640x1472,640x1536,704x1152,704x1216,704x1280,704x1344,704x1408,704x1472,736x1312,768x1088,768x1216,768x1280,768x1344,800x1280,832x960,832x1024,832x1088,832x1152,832x1216,832x1248,864x1152,896x960,896x1024,896x1088,896x1120,896x1152,960x832,960x896,960x1024,960x1088,1024x832,1024x896,1024x960,1024x1024,1088x768,1088x832,1088x896,1088x960,1120x896,1152x704,1152x832,1152x864,1152x896,1216x704,1216x768,1216x832,1248x832,1280x704,1280x768,1280x800,1312x736,1344x640,1344x704,1344x768,1408x576,1408x640,1408x704,1472x576,1472x640,1472x704,1536x512,1536x576,1536x640 | An enumeration. | | magic_prompt_option | string | No | Auto | Auto,On,Off | An enumeration. | | image | string | No | - | - | An image file to use for inpainting. You must also use a mask. | | mask | string | No | - | - | A black and white image. Black pixels are inpainted, white pixels are preserved. The mask will be resized to match the image size. | | style_type | string | No | None | None,Auto,General,Realistic,Design | An enumeration. | | seed | integer | No | - | - | Random seed. Set for reproducible generation | ## Example Request ```bash curl -X POST https://api.eachlabs.ai/v1/prediction/ \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "ideogram-v3-turbo", "input": { "prompt": "A photograph of a uniquely designed fragrance bottle centered against the stunning backdrop of Cappadocia, Turkey. The amber glass bottle features a delicate stopper shaped like a miniature hot air balloon, gently illuminated by the setting sun and resting on a bed of soft sand. Behind the bottle, the surreal landscape of the fairy chimneys in Cappadocia rises dramatically, with unique rock formations casting long shadows across the valley floor as a few wisps of clouds drift across the vibrant sunset. Soft, golden light bathes the scene, enhancing the warm tones of the bottle and creating a dreamlike, ethereal atmosphere, with the text CREED Cappadocia subtly etched on the bottle base." } }' ``` ## Output Schema Response returned by `GET /v1/prediction/{id}` when the job completes: ```json { "status": "success", "predictionID": "string", "output": "string (URL of generated image)", "metrics": { "predict_time": "number (seconds)" } } ``` ## Polling ```bash curl https://api.eachlabs.ai/v1/prediction/{PREDICTION_ID} \ -H "X-API-Key: YOUR_API_KEY" ``` | Status | Meaning | |--------|---------| | `processing` | Still running — poll again | | `success` | Done — read `output` | | `error` | Failed — read `message` / `details` | ## Webhook (alternative to polling) Pass `"webhook_url": "https://your.host/path"` in the create request. Eachlabs POSTs this payload when the job ends: ```json { "exec_id": "prediction-uuid", "status": "succeeded", "output": "https://...", "error": "" } ``` `status` is `"succeeded"` or `"failed"`. `exec_id` equals the `predictionID` from create. Return 2xx within 30 seconds. ## Errors Error body: `{ "status": "error", "message": "...", "details": "..." }` | Code | Meaning | |------|---------| | `400` | Invalid input | | `401` | Missing / invalid `X-API-Key` | | `404` | Unknown model or prediction id | | `429` | Rate limit — 100 creates / min, 10 concurrent per key | | `5xx` | Retry with backoff | ## Overview **ideogram-v3-turbo — Text-to-Image AI Model** ideogram-v3-turbo delivers the fastest and most cost-effective text-to-image generation in the Ideogram v3 family, producing stunningly realistic images with precise text rendering and consistent styles in seconds. Developed by Ideogram, this turbocharged model excels at creating lifelike portraits, product shots, and creative designs, making it ideal for users seeking **Ideogram text-to-image** speed without sacrificing quality. As the quickest variant, ideogram-v3-turbo generates up to 4 images per prompt at 1K resolution, supporting aspect ratios like 16:9, 9:16, 1:1, 4:3, and 3:4—perfect for graphic design, branding, and marketing visuals. ## Usage Notes - API Base URL: `https://api.eachlabs.ai/v1` - Authentication: send `X-API-Key: YOUR_API_KEY`. Generate a key from the Eachlabs dashboard at https://www.eachlabs.ai/dashboard/api-keys. - File-typed parameters (`*_url`, `image_url`, `video_url`, `audio_url`, etc.) accept publicly-reachable HTTPS URLs only. Upload your asset first (GCS / S3 / your CDN) and pass the resulting URL. Data-URIs and localhost URLs are rejected. - For structured parameters (arrays / objects) send real JSON values, not stringified payloads. - Monetary values are reported in USD; per-token / per-megapixel rates may be billed in micro-cents internally. - Prefer `webhook_url` over polling for long-running predictions — see the Webhook Callback section.