What are YouTube Data API quota limits?
TL;DR
Google gives you 10,000 quota units per day for the YouTube Data API. A search.list call costs 100 units (so you get 100 searches/day), while videos.list costs just 1 unit. Write operations cost 50+ units. You can request a quota increase through the Google Cloud Console, but approval isn’t guaranteed. BrightBean handles quota management internally, so you never have to worry about hitting YouTube API limits.
What are YouTube Data API quota limits?
Every YouTube Data API request consumes quota units. Google designed this system to prevent abuse and ensure fair access. The default allocation is 10,000 units per project per day, resetting at midnight Pacific Time.
Here’s what common operations cost:
| Operation | Quota Cost |
|---|---|
search.list |
100 units |
videos.list |
1 unit |
channels.list |
1 unit |
commentThreads.list |
1 unit |
videos.insert (upload) |
1,600 units |
The 100-unit cost for search means you only get 100 search API calls per day with the default quota. This is the biggest pain point for developers building YouTube research tools. If your application needs to search across multiple niches or monitor trending content, you’ll burn through your quota quickly.
You can request a higher quota through the Google Cloud Console by filing an extension request. Google reviews these manually and may ask about your use case, expected traffic, and whether you have a published app. Approval can take days to weeks.
How BrightBean helps
BrightBean abstracts away quota management entirely. When you call the BrightBean API, you don’t consume your own YouTube API quota. BrightBean handles all the underlying data retrieval, caching, and enrichment.
GET /search?query=meal+prep+for+beginners&niche=cooking&limit=20
{
"results": 20,
"quota_used": 0,
"cached": true,
"videos": [
{
"title": "Meal Prep for the Week in 1 Hour",
"views": 2400000,
"published": "2026-01-15",
"competition_score": 0.72
}
]
}
Key takeaways
- Default YouTube API quota is 10,000 units per day per project
- Search operations are expensive at 100 units each (only 100 searches/day)
- Read operations like video and channel details are cheap at 1 unit each
- Quota resets at midnight Pacific Time daily
- BrightBean eliminates quota concerns by handling YouTube data retrieval internally
Related questions
Get structured YouTube intelligence
BrightBean delivers content gaps, title scores, thumbnail analysis, and hook classification via API and MCP server.
Get early access →