Ideogram V3 | Turbo
Generate images with accurate text rendering using Ideogram V3 Turbo. Known for excellent typography and text rendering in generated images, with support for inpainting, magic prompt enhancement, multiple style types, and fine-grained resolution control.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "ideogram-v3-turbo",
"version": "0.0.1",
"input": {
"prompt": "A neon sign that reads \"OPEN 24 HOURS\" glowing in a rainy city street at night",
"aspect_ratio": "16:9",
"style_type": "Realistic"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
1:1 |
Image aspect ratio. Options: 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 |
| image |
string |
- |
Input image for inpainting (must also provide a mask) |
| magic_prompt_option |
string |
Auto |
Prompt enhancement. Options: Auto, On, Off |
| mask |
string |
- |
Black and white mask image. Black pixels are inpainted, white pixels are preserved |
| prompt |
string |
- |
Text prompt for image generation |
| resolution |
string |
None |
Specific resolution (many options available, e.g., 1024x1024, 1920:1080). Use None for automatic |
| seed |
integer |
- |
Random seed for reproducible generation |
| style_type |
string |
None |
Visual style. Options: None, Auto, General, Realistic, Design |
Examples
Logo with text:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "ideogram-v3-turbo",
"version": "0.0.1",
"input": {
"prompt": "A minimalist logo design for a coffee shop called \"BREW & CO\" with a coffee cup icon, clean typography, modern design",
"aspect_ratio": "1:1",
"style_type": "Design",
"magic_prompt_option": "On"
}
}'
Realistic photo with text overlay:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "ideogram-v3-turbo",
"version": "0.0.1",
"input": {
"prompt": "A vintage movie poster for a film called \"THE LAST FRONTIER\" with a cowboy silhouette against a sunset, Western typography",
"aspect_ratio": "2:3",
"style_type": "Realistic",
"seed": 42
}
}'
Inpainting text into an image:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "ideogram-v3-turbo",
"version": "0.0.1",
"input": {
"image": "https://example.com/storefront.jpg",
"mask": "https://example.com/sign-mask.png",
"prompt": "A store sign that reads \"FRESH MARKET\" in elegant gold lettering"
}
}'
Related Models
Documentation
1---2name: ideogram-v3-turbo3description: Ideogram V3 | Turbo. Generate images with accurate text rendering using Ideogram V3 Turbo. Fast AI image generation with excellent typography. Triggers: ideogram, ideogram v3, text in image, typography image, ideogram turbo, generate image with text, ai text rendering4---56# Ideogram V3 | Turbo78Generate images with accurate text rendering using Ideogram V3 Turbo. Known for excellent typography and text rendering in generated images, with support for inpainting, magic prompt enhancement, multiple style types, and fine-grained resolution control.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "ideogram-v3-turbo",20 "version": "0.0.1",21 "input": {22 "prompt": "A neon sign that reads \"OPEN 24 HOURS\" glowing in a rainy city street at night",23 "aspect_ratio": "16:9",24 "style_type": "Realistic"25 }26 }'27```2829## Parameters3031| Parameter | Type | Default | Description |32|-----------|------|---------|-------------|33| aspect_ratio | string | 1:1 | Image aspect ratio. Options: `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` |34| image | string | - | Input image for inpainting (must also provide a mask) |35| magic_prompt_option | string | Auto | Prompt enhancement. Options: `Auto`, `On`, `Off` |36| mask | string | - | Black and white mask image. Black pixels are inpainted, white pixels are preserved |37| prompt | string | - | Text prompt for image generation |38| resolution | string | None | Specific resolution (many options available, e.g., `1024x1024`, `1920:1080`). Use `None` for automatic |39| seed | integer | - | Random seed for reproducible generation |40| style_type | string | None | Visual style. Options: `None`, `Auto`, `General`, `Realistic`, `Design` |4142## Examples4344**Logo with text:**45```bash46curl -X POST https://api.eachlabs.ai/v1/prediction \47 -H "Content-Type: application/json" \48 -H "X-API-Key: $EACHLABS_API_KEY" \49 -d '{50 "model": "ideogram-v3-turbo",51 "version": "0.0.1",52 "input": {53 "prompt": "A minimalist logo design for a coffee shop called \"BREW & CO\" with a coffee cup icon, clean typography, modern design",54 "aspect_ratio": "1:1",55 "style_type": "Design",56 "magic_prompt_option": "On"57 }58 }'59```6061**Realistic photo with text overlay:**62```bash63curl -X POST https://api.eachlabs.ai/v1/prediction \64 -H "Content-Type: application/json" \65 -H "X-API-Key: $EACHLABS_API_KEY" \66 -d '{67 "model": "ideogram-v3-turbo",68 "version": "0.0.1",69 "input": {70 "prompt": "A vintage movie poster for a film called \"THE LAST FRONTIER\" with a cowboy silhouette against a sunset, Western typography",71 "aspect_ratio": "2:3",72 "style_type": "Realistic",73 "seed": 4274 }75 }'76```7778**Inpainting text into an image:**79```bash80curl -X POST https://api.eachlabs.ai/v1/prediction \81 -H "Content-Type: application/json" \82 -H "X-API-Key: $EACHLABS_API_KEY" \83 -d '{84 "model": "ideogram-v3-turbo",85 "version": "0.0.1",86 "input": {87 "image": "https://example.com/storefront.jpg",88 "mask": "https://example.com/sign-mask.png",89 "prompt": "A store sign that reads \"FRESH MARKET\" in elegant gold lettering"90 }91 }'92```9394## Related Models9596- [Qwen Image](../qwen-image/) - Qwen text-to-image97- [Imagen 4 | Fast](../imagen-4-fast/) - Google's fast image generation98- [Seedream V3 | Text to Image](../seedream-v3-text-to-image/) - ByteDance text-to-image99100## Documentation101102- [each::labs Docs](https://docs.eachlabs.ai)103- [API Reference](https://docs.eachlabs.ai/api/overview)