Getting Started
Rate Limits
Two limits apply to every account: a per-minute request rate and a monthly credit allowance. Exceed the request rate and the API returns a 429; run out of credits and it returns a 402.
Limits by Plan
Response Headers
Every successful response carries the headers below, so you can track your remaining requests and credits without making a separate call.
X-RateLimit-LimitMaximum requests allowed per minute for your planX-RateLimit-RemainingRequests remaining in the current windowX-RateLimit-ResetUnix timestamp when the rate limit window resetsX-Credits-UsedCredits consumed by this requestX-Credits-RemainingCredits remaining in your monthly allowanceRate Limit Error (429)
Best practices
→
Read X-RateLimit-Remaining before each burst of requests
→
Implement exponential backoff when you receive a 429 response
→
Use batch endpoints (POST /v1/youtube/transcript/batch) to reduce request count
→
Cache transcript results — they rarely change for published videos
→
Contact support@supacrawlx.com to discuss Enterprise limits