ScavioScavio
ToolsPricingDocs
Sign InGet Started
  1. Home
  2. YouTube API
  3. United States
Language: English

YouTube Data API for United States

Search YouTube for United States creators and content, then extract structured video metadata, comments, and transcripts. One API for search, video details, and channel data.

Get Free API KeyYouTube API Docs

YouTube in United States

YouTube is the dominant video platform in the US with deep penetration across demographics. Shorts, long-form, and Connected TV viewing all compete for attention alongside TikTok and Instagram Reels.

Popular Creator Archetypes

  • US tech reviewers
  • late-night comedy clips
  • sports highlight channels
  • lifestyle vloggers

Search YouTube United States

Pass your query in the search field. Use a creator name or a term in United States's local language, then refine with upload_date, duration, sort_by, and feature filters. Search runs across all of YouTube; there is no country parameter.

Python
import requests

response = requests.post(
    "https://api.scavio.dev/api/v1/youtube/search",
    headers={
        "Authorization": "Bearer your_scavio_api_key",
        "Content-Type": "application/json",
    },
    json={"search": "US tech reviewers"},
)

data = response.json()
for video in data["data"]["results"][:5]:
    channel = video.get("channel") or {}
    print(video["title"])
    print(f"  {channel.get('name', 'N/A')} | {video.get('view_count', 'N/A')} views")
    print(f"  {video['url']}\n")

Get Video Metadata

The video endpoint returns structured video data including title, view count, length, description, keywords, chapters, channel info, and available captions for any public video.

Python
import requests

# Get full video details
response = requests.post(
    "https://api.scavio.dev/api/v1/youtube/video",
    headers={"Authorization": "Bearer your_scavio_api_key"},
    json={"video_id": "dQw4w9WgXcQ"},
)
data = response.json()
print(f"Title: {data['data']['title']}")
print(f"Views: {data['data']['view_count']}")
print(f"Length: {data['data']['length_seconds']}s")

Common Use Cases in United States

  • Trend detection — monitor emerging topics and viral content in the United States market.
  • Creator research — analyze channels, views, and engagement at scale.
  • Content analysis — analyze tags, descriptions, and engagement metrics at scale.
  • Brand monitoring — track mentions of your brand in United States YouTube videos.
  • Competitive intelligence — see what competitors rank for in United States YouTube search.

Why Use Scavio for YouTube United States

  • No YouTube Data API quota limits. Scavio handles rate limiting for you.
  • Deep metadata. Views, likes, comments, tags, categories, channel info, and duration in one call.
  • 15+ search filters. Duration, upload date, quality, license, HD, 4K, HDR, and more.
  • Structured JSON. Video ID, channel, views, likes, duration, tags, all in a flat schema.
  • Free tier. 50 credits on signup. No card required.

Frequently Asked Questions

Send a POST request to /api/v1/youtube/search with your query in the search field. Scavio returns structured video, channel, and playlist results you can filter by upload date, duration, and features, then fetch details, comments, and transcripts for any video.

Scavio returns structured search results plus per-video details, comments, transcripts, channel profiles, and channel uploads for United States YouTube content.

Title, channel name and id, view count, length, description, keywords, chapters, and available captions. Transcripts are available separately as plain text or timed SRT. All returned in clean JSON.

Yes. Call /api/v1/youtube/transcript with a video id to get the full transcript as plain text, or as timed SRT subtitles with start and end times.

Scavio offers 50 free credits on signup. A YouTube search costs 2 credits, most other YouTube lookups cost 1 credit, and transcripts cost 8. No credit card required.

Start Building with YouTube United States

Search YouTube and extract video metadata for the United States market. 50 free credits on signup.

Get API AccessRead the Docs
ScavioScavio

One scraper API for every social, search and ecommerce platform. Built for AI agents.

Product

  • Features
  • Pricing
  • Dashboard
  • Affiliates

Developers

  • Documentation
  • API Reference
  • Quickstart
  • MCP Integration
  • Python SDK

Alternatives

  • Tavily Alternative
  • SerpAPI Alternative
  • Firecrawl Alternative
  • Exa Alternative
  • Serper Alternative
  • Tavily vs Scavio
  • SerpAPI vs Scavio
  • All alternatives
  • Compare Scavio vs alternatives

Search APIs

  • Google Search API
  • Amazon Product API
  • YouTube API
  • Reddit API
  • Walmart Product API
  • TikTok API
  • Instagram API

Tools

  • All Tools

© 2026 Scavio. All rights reserved.

Featured on TAAFT
Terms of ServicePrivacy Policy