ideogram-rate-limits
Installation
SKILL.md
Ideogram Rate Limits
Overview
Handle Ideogram's rate limits with exponential backoff, request queuing, and concurrency control. Ideogram enforces a default limit of 10 in-flight requests (concurrent, not per-minute). Image generation takes 5-15 seconds per call, so this limit can be hit quickly during batch operations.
Prerequisites
IDEOGRAM_API_KEYconfigured- Understanding of async patterns
p-queuenpm package (optional, for queue-based approach)
Ideogram Rate Limit Model
| Aspect | Detail |
|---|---|
| Type | Concurrent in-flight requests |
| Default limit | 10 simultaneous requests |
| Error code | HTTP 429 |
| Retry header | Not guaranteed -- use exponential backoff |
| Higher limits | Contact partnership@ideogram.ai |
| Generation time | 5-15s per image (varies by model/resolution) |
Related skills