Channel Data

Pull About info, format overview, daily analytics, videos, shorts, and playlists for any channel.

llms.txt Full docs for LLMs

Look up rich metadata for any YouTube channel by ID. All endpoints take a 24-char channel ID (UCxxxxxxxxxxxxxxxxxxxxxx). If you only have a @handle or URL, resolve it first via one of the search endpoints or the resolve endpoint.

GET /api/channels/:channel_id/about

Everything from a channel's About page in one call — name, description, subscriber and view counts, country, language, join date, topics, social links, trailer, banner, and more.

Path Parameters
NameTypeDescription
channel_idstring24-char YouTube channel ID (starts with UC).
Example Response
{ "success": true, "channel": { "channel_id": "UCXoyny_UIW-02UwiNPUZT-w", "title": "The Geo Network", "handle": "@TheGeoNetwork", "description": "...", "url": "https://www.youtube.com/channel/UCXoyny_UIW-02UwiNPUZT-w", "country": { "code": "TR", "name": "Türkiye" }, "default_language": "en", "avatar_url": "...", "banner_url": "...", "subscriber_count": { "raw": 125000, "display": "125K" }, "view_count": { "raw": 27325762, "display": "27.3M" }, "video_count": { "raw": 95, "display": "95" }, "avg_views_per_video": { "raw": 287639, "display": "287.6K" }, "joined": { "iso": "2019-10-12T00:00:00+00:00", "formatted": "Oct 12, 2019", "relative": "6 years ago", "age_days": 2378 }, "privacy_status": "public", "made_for_kids": false, "hidden_subscribers": false, "keywords": "...", "topic_categories": ["Military", "Politics"], "trailer_video_id": "abc123", "uploads_playlist_id": "UUXoyny_UIW-02UwiNPUZT-w", "tabs": ["Home", "Videos", "Shorts", "Playlists", "Posts"], "has_contact_email": true, "social_links": [ { "platform": "instagram", "url": "instagram.com/thegeonetwork_tgn" } ], "available_countries_count": 245 } }
Example Request
curl -H "Authorization: Bearer algrow_..." \ "https://algrow.online/api/channels/UCXoyny_UIW-02UwiNPUZT-w/about"
200 Success 400 Invalid channel_id 404 Channel not found 429 Rate limit
GET /api/formats/:slug/overview

Aggregate stats for one of Algrow's 24 canonical channel formats — how many channels are tracked in the niche, average and median subscriber counts, and the biggest channels. The channel About endpoint returns each channel's format slug; feed it here.

Path Parameters
NameTypeDescription
slugstringOne of the 24 canonical format slugs (e.g. documentary, kids_content, challenge_videos).
Example Response
{ "success": true, "format": { "slug": "challenge_videos", "display_name": "Challenge Videos" }, "channels_tracked": 18265, "avg_subscribers": 70840, "median_subscribers": 7060, "top_channels": [ { "channel_id": "UCX6OQ3DkcsbYNE6H8uQQuVA", "name": "MrBeast", "subscribers": 511000000, "profile_picture": "...", "url": "https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA" } ] }
Example Request
curl -H "Authorization: Bearer algrow_..." \ "https://algrow.online/api/formats/challenge_videos/overview"
200 Success 404 Unknown format slug 429 Rate limit
GET /api/channels/:channel_id/daily-analytics

See how a channel has grown day-by-day across any date range you pick — subscribers, views, and uploads, plus a summary with total growth over the window.

Query Parameters
NameTypeRequiredDefaultDescription
start_datestringOptional30 days agoISO YYYY-MM-DD.
end_datestringOptionaltodayISO YYYY-MM-DD. Max window 365 days (clamped).
Example Response
{ "success": true, "channel_id": "UCXoyny_UIW-02UwiNPUZT-w", "channel_title": "The Geo Network", "channel_type": "longform", "start_date": "2026-03-16", "end_date": "2026-04-15", "days_requested": 31, "days_with_data": 30, "summary": { "sub_growth": 12500, "view_growth": 8450000, "video_growth": 12, "starting_subs": 125000, "ending_subs": 137500, "starting_views": 27000000, "ending_views": 35450000 }, "days": [ { "date": "2026-03-16", "total_subs": 125000, "total_views": 27000000, "total_videos": 95, "sub_increase_24h": 420, "view_increase_24h": 215000, "video_increase_24h": 0 } ] }
Example Request
curl -G "https://algrow.online/api/channels/UCXoyny_UIW-02UwiNPUZT-w/daily-analytics" \ -H "Authorization: Bearer algrow_..." \ -d "start_date=2026-03-01&end_date=2026-04-15"
200 Success 400 Invalid date 404 No data in range
GET /api/channels/:channel_id/videos

Browse a channel's longform uploads, newest first — with titles, view counts, durations, upload dates, and thumbnails.

Query Parameters
NameTypeRequiredDefaultDescription
limitintegerOptional30Max videos (1–100).
Example Response
{ "success": true, "channel_id": "UCXoyny_UIW-02UwiNPUZT-w", "limit": 30, "count": 30, "has_more": true, "videos": [ { "video_id": "R-NK5pa7KAU", "title": "The Collapse Has Begun...", "url": "https://www.youtube.com/watch?v=R-NK5pa7KAU", "published_text": "5 hours ago", "duration_text": "18:31", "duration_seconds": 1111, "view_count": 106657, "view_count_text": "106,657 views", "thumbnail_url": "..." } ] }
Example Request
curl -G "https://algrow.online/api/channels/UCXoyny_UIW-02UwiNPUZT-w/videos" \ -H "Authorization: Bearer algrow_..." -d "limit=50"
200 Success 400 Invalid channel_id
GET /api/channels/:channel_id/shorts

Browse a channel's Shorts, newest first — the real Shorts tab, not short-duration regular videos.

Query Parameters
NameTypeRequiredDefaultDescription
limitintegerOptional30Max shorts (1–100).
Example Response
{ "success": true, "channel_id": "UCXoyny_UIW-02UwiNPUZT-w", "limit": 30, "count": 3, "has_more": false, "shorts": [ { "video_id": "5YKwSHccYTA", "title": "Detaylı tarif...", "url": "https://www.youtube.com/shorts/5YKwSHccYTA", "view_count": 942, "view_count_text": "942 views", "thumbnail_url": "..." } ] }
Example Request
curl -H "Authorization: Bearer algrow_..." \ "https://algrow.online/api/channels/UCXoyny_UIW-02UwiNPUZT-w/shorts?limit=20"
200 Success 400 Invalid channel_id
GET /api/channels/:channel_id/playlists

See every public playlist on a channel — title, description, video count, and thumbnail for each. Paginates in batches of 50.

Query Parameters
NameTypeRequiredDefaultDescription
page_tokenstringOptionalPass the next_page_token from a previous response for subsequent pages.
Example Response
{ "success": true, "channel_id": "UCXoyny_UIW-02UwiNPUZT-w", "count": 17, "next_page_token": null, "playlists": [ { "playlist_id": "PL069L7PbBcLx_O3Zv3gzUbScKtRrcMR76", "title": "pide tarifleri", "description": "", "published_at": "2020-08-31T19:26:11Z", "video_count": 4, "thumbnail_url": "...", "url": "https://www.youtube.com/playlist?list=PL069L7PbBcLx_O3Zv3gzUbScKtRrcMR76" } ] }
Example Request
curl -H "Authorization: Bearer algrow_..." \ "https://algrow.online/api/channels/UCXoyny_UIW-02UwiNPUZT-w/playlists"
200 Success 400 Invalid channel_id 429 Rate limit
esc
×

Buy More Credits

Boost
150
credits
$4.99
Good for:
  • ~12 min caption removal
Studio
1,000
credits
$31.49
Good for:
  • ~80 min caption removal