Best-in-class text rendering in images. Perfect for logos, posters, and any design requiring accurate text.
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "ideogram-v2",
"input": {
"prompt": "Minimalist logo design for tech startup 'NOVA AI', geometric shapes, blue gradient, clean professional look",
"aspect_ratio": "1:1",
"style_type": "design"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text description including any text to render |
aspect_ratio | string | No | 1:1 | Output aspect ratio 1:14:33:416:99:16 |
style_type | string | No | auto | Visual style autorealisticdesign3danime |
Create a text-based logo
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "ideogram-v2",
"input": {
"prompt": "Minimalist logo design for tech startup 'NOVA AI', geometric shapes, blue gradient, clean professional look",
"aspect_ratio": "1:1",
"style_type": "design"
}
}'Create promotional poster
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "ideogram-v2",
"input": {
"prompt": "Music festival poster with text 'SUMMER BEATS 2024', colorful abstract waves, modern design",
"aspect_ratio": "3:4",
"style_type": "design"
}
}'POST /v1/predictions