Creatify · Rate Limits

Creatify Rate Limits

Creatify does not publish fixed numeric per-minute request rate limits for the API. In practice, throughput is governed by two things: (1) your subscription's monthly credit allowance, which caps how much video/audio you can generate, and (2) the asynchronous nature of generation - each create call enqueues a job that renders in the background, so callers create a job then poll GET /{resource}/{id}/ (or wait for a webhook) rather than blocking. Callers should poll on a reasonable interval and back off on 429 responses.

Creatify Rate Limits is the machine-readable rate-limit profile for Creatify on the APIs.io network, conforming to the API Commons Rate Limits specification.

It captures 4 rate-limit definitions, measuring requests, credits, jobs, and characters.

The profile also includes 3 backoff/retry policies defined and response codes documented for throttled.

Tagged areas include AI Avatars, Video Generation, Marketing Video, Rate Limiting, and Quotas.

4 Limits Throttle: 429
AI AvatarsVideo GenerationMarketing VideoRate LimitingQuotas

Limits

API Request Rate account
requests
not published
No fixed numeric per-minute request-rate limit is documented for the Creatify API.
Monthly Credit Allowance account
credits
per plan
Generation is capped by the plan's monthly credit allowance (e.g. API Starter 500, API Pro 2000).
Concurrent Render Jobs account
jobs
not published
Concurrency of background render jobs is not documented; Enterprise accounts may negotiate higher throughput.
Text-to-Speech Script Length request
characters
8000
The text_to_speech script field is capped at 8000 characters per request.

Policies

Asynchronous Generation
Media endpoints return a job with a status immediately; clients poll GET /{resource}/{id}/ until status is "done" or supply a webhook_url to be notified.
Credit Metering
Throughput is bounded by credits consumed (roughly 5 credits per 30s of video, 1 credit per 30s of audio) rather than by a request-per-second cap.
Backoff Strategy
Clients should implement exponential backoff with jitter and honor Retry-After on 429 responses, and poll job status on a reasonable interval rather than tight-looping.

Sources