Official Data API v3 quota buckets versus a Trends MCP YouTube Trending pull, with live ranks and search growth from July 29, 2026.
Live data as of 2026-07-29
YouTube Data API v3 is free in dollars and expensive in quota. As of Google's Quota Calculator on July 29, 2026, each project defaults to 100 search.list calls/day, 100 videos.insert calls/day, and 10,000 units/day for other methods, resetting at midnight Pacific Time. Building a "what's trending" monitor by searching keywords burns that search bucket quickly. Trends MCP returns the live YouTube Trending board as ranked JSON in one get_top_trends request (25 titles on the July 29, 2026 pull) without using Google Cloud YouTube quota.
From the Trends MCP scan of July 29, 2026 (as_of_ts 2026-07-29T14:01:37+00:00), get_top_trends type YouTube Trending returned 25 ranked titles. Top rows:
| Rank | Title |
|---|---|
| 1 | Electric Callboy - THE WAY YOU ARE (OFFICIAL VIDEO) |
| 2 | JUMANJI: OPEN WORLD - Official Trailer (4K) |
| 3 | Don't Let The Skinwalkers In... [Shift At Midnight] |
| 4 | TopOppGen - take that risk (Official Music Video) |
| 5 | Ted Lasso Season 4 Official Trailer (Together), Apple TV |
| 6 | LIVE | DARK & DARKER | GIMMICK & COCO |
| 7 | Ninajirachi & Porter Robinson - WannaCry [Official Visualiser] |
| 8 | An Exclusive Look at Spider-Man: Brand New Day | Spider-Man Returns to Fortnite |
| 9 | Quitting EVERYTHING for this. |
| 10 | mgk, Yuki Chiba - JJK (Official Video) |
| 11 | Children of Blood and Bone | Official Trailer (2027) |
| 12 | Adam Calhoun - "Till I Collapse Remix" (Eminem) |
| 13 | NBA 2K27: Official Gameplay Trailer |
| 14 | roblox best gameplay |
| 15 | Aaron Smith - Dancin - Krono Remix (Lyrics) ft. Luvli |
Google Search growth follow-ups on the same day (source google search, recent_date 2026-07-25) show which board titles also moved outside YouTube. Ted Lasso jumped +100.0% over 7 days (index 36 vs 18), +125.0% over 30 days (36 vs 16), and +350.0% over 3 months (36 vs 8). Electric Callboy rose +6.9% over 7 days (31 vs 29) but fell -44.64% over 30 days and -29.55% over 3 months. Jumanji rose +6.25% over 7 days (34 vs 32), then slipped -5.56% over 30 days and -20.93% over 3 months. Direct youtube source growth calls for those three keywords returned data_unavailable on July 29, 2026, so the cross-check used Google Search instead.
Google's Quota Calculator (developers.google.com/youtube/v3/determine_quota_cost, fetched July 29, 2026) states three default daily buckets: 100 search.list calls, 100 videos.insert calls, and 10,000 units combined for all other endpoints. Daily quotas reset at midnight Pacific Time. Invalid requests still cost at least 1 unit. Extra pages of paginated results each incur the method's cost again.
| Method | Default cost / bucket (July 29, 2026 docs) |
|---|---|
search.list | Own bucket: 100 calls/day (1 quota per call inside that bucket) |
videos.insert | Own bucket: 100 calls/day |
videos.list | 1 unit from the shared 10,000-unit pool |
channels.list | 1 unit |
playlistItems.list | 1 unit |
commentThreads.list | 1 unit |
videos.update / most writes | 50 units |
captions.insert | 400 units |
captions.update | 450 units |
A monitor that runs 100 keyword search.list calls exhausts the search bucket for the day even if the shared 10,000-unit pool is almost untouched. Fetching metadata for known video IDs with videos.list stays cheap at 1 unit each. Quota increases require a compliance audit; Google does not publish a self-serve paid quota top-up.
Trends MCP prices requests, not YouTube units. Free: 100 requests/month. Starter: $19 for 1,000. Pro: $49 for 5,000. Business: $199 for 25,000. Annual billing saves 20%. One get_top_trends call with type YouTube Trending returned the full 25-row board on July 29, 2026. That answers "what is on YouTube Trending right now" without a Google Cloud project or search.list spend.
{
"mode": "get_top_trends",
"type": "YouTube Trending",
"limit": 25
}
Use the official Data API when the workflow needs video IDs, statistics, comments, captions, uploads, or channel writes. Use Trends MCP when the workflow needs the trending board or YouTube search-interest history through source youtube on get_time_series / get_growth (see the YouTube trends API). For dollar-side vendor comparisons across trend APIs, see the trend data API pricing comparison.
| Job | YouTube Data API v3 (default quota) | Trends MCP |
|---|---|---|
| Daily Trending board snapshot | No dedicated public "trending chart" method; teams approximate with searches and charts scraping | 1 get_top_trends request/day ≈ 30 requests/month |
| 50 keyword discovery searches/day | 50 of 100 daily search.list budget | Not a search.list replacement; use trending feed + growth on known terms |
| Metadata for 500 known video IDs | ~500 units via videos.list (well under 10,000) | Not available (no video ID catalog) |
| Upload 10 videos/day | 10 of 100 daily videos.insert budget | Not available |
| Track Ted Lasso attention after a trailer day | Mix of search + list calls; watch both buckets | Trending rank #5 on July 29, 2026 plus Google Search +100% over 7 days |
The expensive mistake is treating Data API search as a free trending oracle. At 100 search.list calls/day, a 15-minute cron that searches 10 terms burns the search bucket in under 3 hours if each cycle paginates. The cheap path for board-level awareness is one Trends MCP trending pull, then selective Data API videos.list only for IDs you already trust.
Trends MCP YouTube Trending returns titles and ranks, not video IDs, view counts, or comments. Region and category filters from YouTube's own charts UI are not exposed as separate Trends MCP parameters on this feed. Keyword growth on source youtube can return data_unavailable, as it did for Electric Callboy, Ted Lasso, and Jumanji on July 29, 2026; Google Search growth filled that gap for those three terms.
YouTube Data API quota is free but approval-gated beyond defaults. Captions writes still tax the shared pool hard (400 to 450 units). Docs pages sometimes lag the calculator table; always re-check Google's Quota Calculator before locking a capacity plan. Neither product replaces YouTube Analytics for owned-channel revenue metrics.
Sign up for a Trends MCP key (100 free requests/month, no credit card), call get_top_trends with type YouTube Trending, and parse the [rank, title] pairs. Optional next step: run get_growth on source google search for the titles that matter, the way Ted Lasso's +350.0% over 3 months confirmed the July 29 board spike. Setup paths for Claude, Cursor, and REST sit in the docs. For source-level YouTube search interest, keep the YouTube trends overview nearby.
FAQ