X-RateLimit-Limit
Maximum requests allowed in the current short-window interval.
Understand YouTube API 429 errors, rate limits, quota_exceeded responses, Retry-After headers and safe retry strategies.
A 429 is not one single problem. It can mean a short-window rate limit, a monthly quota limit or another provider-specific throttling state. In Scority, check error.code before deciding what to do next.
Rate limits protect service reliability over a short window. Monthly quota controls product usage over a longer billing or access period.
Scority's transcript API uses normalized error codes so integrations can distinguish short-window throttling from monthly quota exhaustion.
Read these headers when building retry and backoff behavior.
Maximum requests allowed in the current short-window interval.
Requests left before the current window is exhausted.
When the current short-window interval resets.
How long to wait after a 429 rate_limited response.
Retries should reduce pressure, not multiply it. Use explicit delays, backoff and queueing instead of immediate loops.
Transcript workflows often request the same video more than once. Caching successful responses in your own application can reduce both quota usage and rate-limit pressure.
The request shape is the same whether the response succeeds or returns a normalized 429 error.
curl "https://api.scority.ai/v1/youtube/transcript?video_id=dQw4w9WgXcQ" \
-H "x-api-key: YOUR_API_KEY"See the canonical header and quota reference.
Open →Map rate_limited and quota_exceeded to actions.
Open →Understand monthly quota, short-window limits and caching.
Open →Estimate transcript usage and cost drivers.
Open →Review the transcript endpoint and response shape.
Open →