Skip to main content
Requests are rate limited per API key. The API tells you where you stand on every authenticated response — read the headers and back off when you approach the limit. CreatorAudit does not publish specific numeric limits; rely on the headers rather than hard-coding a number.

Rate-limit headers

Every authenticated response includes: The unauthenticated GET /health and GET /meta are not rate limited and omit these headers.
The values above are illustrative. Read X-RateLimit-Remaining and X-RateLimit-Reset at runtime instead of assuming a fixed limit — limits can change without a new API version.

When you hit the limit

Exceeding the limit returns 429 with code: RATE_LIMITED and a Retry-After header giving the number of seconds to wait:
Honor Retry-After when present, then fall back to exponential back-off. Slowing down proactively as X-RateLimit-Remaining approaches zero avoids most 429s.
The same back-off pattern is a good fit for transient 503 (SERVICE_UNAVAILABLE) responses. See Errors.

Be a good client

  • Paginate efficiently. Use the largest sensible limit (up to 200) to fetch a page set in fewer calls. See Pagination.
  • Cache with ETags. GET responses carry a strong ETag and Cache-Control: private, no-cache. Send the value back as If-None-Match; an unchanged representation returns 304 Not Modified with an empty body — a conditional request still counts, but you skip the re-download.
  • Skip include_total unless needed. It adds a COUNT query per request.
  • Batch with the metrics endpoints. Instead of polling many resources one at a time, use the batch windowed metrics endpoints — POST /v2/accounts/metrics, POST /v2/videos/metrics, and POST /v2/account-videos/metrics — and the video deltas endpoint to retrieve many records in a single call. See the API reference for these endpoints.
  • Spread out background jobs. Add jitter and avoid bursts so you do not exhaust a window all at once.
For how rate limits sit alongside pagination caps, account quotas, and other ceilings, see Limits & quotas.