Pagination limit
List endpoints page with a cursor and a limit. The allowed range depends on
the endpoint:
Stop paging when
pagination.has_next is false. Each endpoint’s reference page
lists its exact range. See Pagination.
Batch metrics input size
The batch endpoints —POST /accounts/metrics, POST /videos/metrics, and
POST /account-videos/metrics — fetch windowed metrics for many IDs in a single
call instead of one request per resource.
You can pass many IDs per call, but very large sets should be chunked into several
requests so each one stays responsive and within your rate limit. If you exceed an
endpoint’s accepted input, you’ll get a 422 with code: VALIDATION_ERROR — read
the detail to see the bound. See Errors.
Rate limits
Requests are rate limited per API key. CreatorAudit does not publish specific numeric limits — read the headers on each response rather than hard-coding a value:
When you exceed the limit you get a
429; back off and retry. See
Rate limits for the full pattern.
Tracking quota
Each organization can set an optional cap on the number of accounts it tracks.By default there is no cap — tracking is unlimited. A cap only applies when your
plan or workspace sets one.
POST /accounts returns 403 with
code: QUOTA_EXCEEDED:
Scrape cadence
Tracked accounts and individual videos refresh on a schedule rather than in real time. The cadence is configurable:
The organization default applies unless you set a per-account or per-video
override when you track the resource or update it later.
last_scrape_time stays
null until the first successful refresh. See
Data freshness.