Back to API Platform
Ideogram 4 Instant API
The fastest, most affordable Ideogram 4.0. Near-instant text-to-image for rapid drafts and high-volume work. Integrate this model via REST with endpoint docs, parameters, and code examples.
Image Generation
Credit Cost
0.2 credits
Type
Image
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
POST
/api/v1/models/ideogram-v4-instant/runTest This Model
Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.
LLM.txt
AI-Ready
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/ideogram-v4-instant.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
prompt | string | - |
json_prompt | string | - |
tier | enum | turbo |
resolution | enum | None |
enable_copyright_detection | boolean | false |
Code Examples
Copy and paste to get started
bash
curl -X POST "https://pixeldojo.ai/api/v1/models/ideogram-v4-instant/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A bold typographic poster that reads \"IDEOGRAM 4\", clean geometric layout, vibrant color blocking"
}'Response Format
Submit Response (202 Accepted)
json
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 0.2,
"creditsRemaining": 95,
"expiresAt": "2026-08-08T19:39:47Z"
}Completed Response
json
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 0.2,
"expiresAt": "2026-08-08T19:39:47Z"
}