Documentation Index
Fetch the complete documentation index at: https://ansdevcloud.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Rate Limits
The only rate-limited endpoint today isPOST /v1/video/:id/playback-token. The list / get endpoints are not throttled beyond Cloud Run’s edge protection, but please be a good neighbour — they’re cheap to call but not free.
Quota
| Tier | Tokens per UTC day per key |
|---|---|
| Default | 1,000 |
| Custom | Set by Ansdev support |
Response headers
Every response fromplayback-token carries the standard headers:
X-RateLimit-Limit— your daily quota.X-RateLimit-Remaining— tokens left in the current window.X-RateLimit-Reset— Unix epoch (seconds) when the counter resets.
Backoff strategy
Why daily, not per-second?
A playback token is per-view, not per-frame — one token plays the entire video. Throttling per-second adds 99 percentile noise for a metric (concurrent viewers) we don’t actually want to police. A daily budget protects against runaway scripts while leaving real traffic patterns alone.Need a higher limit? Email support@ansdev.cloud with your use case. The cap can be raised per key without a code change.