Discover/YouTube API
live

YouTube APIyoutube.com

Extract YouTube channel videos, check live stream status, and search channels by niche. Returns titles, view counts, subscriber data, and contact emails.

This API takes change requests — .
Endpoint health
verified 21h ago
search_channels
get_channel_videos
get_channel_live_status
3/3 passing latest checkself-healing
Endpoints
3
Updated
25d ago

What is the YouTube API?

This API exposes 3 endpoints for extracting public YouTube channel data: video listings, live stream status, and channel discovery. The get_channel_videos endpoint returns video IDs, titles, watch URLs, view counts, and relative publish timestamps for any public channel, with support for sorting by latest, popular, or oldest and automatic pagination to fulfill any requested limit.

This call costs1 credit / call— charged only on success
Try it
Maximum number of videos to return. The scraper paginates automatically to fulfill the limit.
Sort order for videos.
YouTube channel handle, with or without the leading '@' (e.g. '@SuccessionBio' or 'SuccessionBio').
api.parse.bot/scraper/17f80f00-16b9-481b-8d14-fa845ca3f046/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/17f80f00-16b9-481b-8d14-fa845ca3f046/get_channel_videos?limit=5&sort_by=latest&channel_handle=%40SuccessionBio' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace youtube-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: YouTube Channel Videos API — search channels, browse videos, check live status."""
from parse_apis.YouTube_Channel_Videos_API import YouTube, Sort, ChannelNotFound

client = YouTube()

# Search for channels in a niche (limit caps total items fetched)
for ch in client.channel_search_results.search(niche="personal finance", limit=3):
    print(ch.channel_name, "|", ch.subscriber_count, "|", ch.contact_email)

# Construct a known channel and browse its latest videos
channel = client.channel(handle="@mkbhd")
for video in channel.videos(sort_by=Sort.LATEST, limit=3):
    print(video.title, "|", video.views, "|", video.published)

# Check if a news channel is currently live streaming
news = client.channel(handle="@SkyNews")
status = news.live_status()
print(f"Live: {status.is_live}, Title: {status.live_title}, Viewers: {status.live_viewers}")

# Handle a channel that doesn't exist
try:
    missing = client.channel(handle="@thisChannelDoesNotExist99999")
    for v in missing.videos(limit=1):
        print(v.title)
except ChannelNotFound as exc:
    print(f"Channel not found: {exc.channel_handle}")

print("Exercised: channel_search_results.search, channel.videos, channel.live_status, ChannelNotFound")
All endpoints · 3 totalmissing one? ·

Retrieve videos from a YouTube channel's public videos page. Returns video IDs, titles, watch URLs, view counts, and relative publish timestamps. Supports sorting by latest (default), popular, or oldest. Automatically paginates through the channel's video grid to fulfill the requested limit. View counts and publish dates are returned as human-readable strings exactly as YouTube renders them (e.g. '21 views', '2 weeks ago').

Input
ParamTypeDescription
limitintegerMaximum number of videos to return. The scraper paginates automatically to fulfill the limit.
sort_bystringSort order for videos.
channel_handlerequiredstringYouTube channel handle, with or without the leading '@' (e.g. '@SuccessionBio' or 'SuccessionBio').
Response
{
  "type": "object",
  "fields": {
    "videos": "array of Video objects with video_id, title, url, views, published",
    "video_count": "integer — number of videos returned in this response",
    "channel_handle": "string — the normalized channel handle with @ prefix"
  },
  "sample": {
    "data": {
      "videos": [
        {
          "url": "https://www.youtube.com/watch?v=WDx-dJ-oznI",
          "title": "The Alien Intern: Why Managing AI Agents Is the Career Skill of the Decade | SalesDNA Podcast",
          "views": "21 views",
          "video_id": "WDx-dJ-oznI",
          "published": "2 weeks ago"
        },
        {
          "url": "https://www.youtube.com/watch?v=QmWjcCLEUlw",
          "title": "Have an Omnipresent, Helpful Opinion | SalesDNA Podcast",
          "views": "38 views",
          "video_id": "QmWjcCLEUlw",
          "published": "1 month ago"
        }
      ],
      "video_count": 5,
      "channel_handle": "@SuccessionBio"
    },
    "status": "success"
  }
}

About the YouTube API

Video Listings

The get_channel_videos endpoint accepts a channel_handle (with or without the @ prefix) and returns an array of video objects, each containing video_id, title, url, views, and published. Use the sort_by parameter to order results by latest (default), popular, or oldest. The limit parameter controls how many videos are returned; pagination is handled automatically so you always get the exact count requested regardless of how deep into the channel's history it reaches.

Live Stream Detection

get_channel_live_status checks whether a given channel is currently broadcasting. When is_live is true, the response includes the stream's live_title, live_url, live_viewers (formatted as a human-readable string matching what YouTube displays, e.g. "12K watching"), and a thumbnail_url. When the channel is offline, is_live is false and all stream-specific fields return null.

Channel Discovery

search_channels accepts a niche query string and returns matching channel objects with channel_handle, channel_name, channel_url, subscriber_count, video_count, profile_picture, description, and any publicly listed contact email. Use the page and limit parameters to paginate through results without duplicates across calls. The total_results field reflects how many channels were returned in that specific response.

Reliability & maintenanceVerified

The YouTube API is a managed, monitored endpoint for youtube.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when youtube.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official youtube.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
21h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Audit a competitor's upload cadence by sorting their channel videos by oldest and tracking published timestamps
  • Monitor a news or sports channel for active live streams using is_live and live_viewers
  • Build a channel prospecting list for influencer outreach by searching a niche and collecting contact emails from About pages
  • Aggregate view counts across a channel's most popular videos to estimate audience engagement
  • Detect when a brand channel goes live and trigger a notification using live_url and thumbnail_url
  • Paginate through a channel's full video history to build a complete archive of video_id and title pairs
  • Find channels in a specific niche alongside their subscriber_count to filter by audience size
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does YouTube have an official developer API?+
Yes. Google offers the YouTube Data API v3 at https://developers.google.com/youtube/v3. It requires OAuth 2.0 or an API key, enforces daily quota units, and restricts certain data. This Parse API covers a different surface — no quota management or Google account required.
What does `get_channel_live_status` return when a channel is not live?+
is_live is false and live_url, live_title, live_viewers, and thumbnail_url all return null. When the channel is live, live_viewers is a display string (e.g. '4.2K watching') rather than a raw integer, so plan your parsing accordingly.
Does `search_channels` always return a contact email for each channel?+
No. The email field is only populated when the channel owner has made an email address publicly visible on their About page. Many channels do not expose one, so expect null values to be common in the results.
Does the API return video comments, descriptions, or tags?+
Not currently. get_channel_videos returns video_id, title, url, views, and published per video — comments, full descriptions, and tags are not included. You can fork this API on Parse and revise it to add an endpoint that fetches individual video detail pages for those fields.
Can I retrieve videos from a channel that uses a custom URL rather than a handle?+
The channel_handle parameter expects the @-prefixed handle format (e.g. @SuccessionBio). Channels that only have legacy /c/ or /user/ custom URLs may not resolve correctly. The easiest workaround is to find the channel's current handle from its YouTube profile page first.
Page content last updated . Spec covers 3 endpoints from youtube.com.
Related APIs in Streaming VideoSee all →
app.channelcrawler.com API
Search and discover YouTube channels across a database of 22M+ channels to find creators, communities, and content in your areas of interest. Get detailed channel information including stats and metadata to research creators and understand their audience.
m.youtube.com API
Get video titles and metadata from the Mindplicit YouTube channel to track content updates and organize channel information. Access a complete list of videos to monitor new uploads and retrieve detailed information about each video's performance and details.
viewstats.com API
viewstats.com API
space.bilibili.com API
Retrieve and browse videos from any Bilibili user channel with customizable sorting, filtering, and pagination options. Organize your video discovery by applying specific criteria to find exactly the content you're looking for.
twitch.tv API
Search for Twitch streamers and channels, view their profiles and streaming details, and discover live streams organized by category. Find the content and creators you want to watch all in one place.
filmot.com API
Search YouTube channels and find specific moments across videos by looking up subtitles in multiple languages through Filmot's comprehensive database. Discover exactly when topics are mentioned across channels without manually watching every video.
kick.com API
Discover all active livestreams from any Kick.com category and access detailed information about each channel, including viewer counts, tags, language, and creator profiles. Monitor live content across specific categories to find streamers and trending broadcasts in real-time.
bilibili.com API
Discover and monitor trending videos on Bilibili with access to video metadata, uploader information, and engagement statistics. Stay updated on what's popular across the platform to find the latest viral content and emerging creators.