DocsIntegrationsPlaygroundPricing
Get API Key
SUPACRAWL
StatusSupportDashboard
SUPACRAWL
Docs/API Reference/YT Channel
API Reference

YouTube Channel

Retrieve channel information including name, description, subscriber count, total video count, and thumbnail. Use the channel videos endpoint to list individual videos.

GET/v1/youtube/video/channel1 credit

Parameters

NameTypeRequiredDefaultDescription
urlstringoptionalFull channel URL. Use either url or channelId.
channelIdstringoptionalYouTube channel ID (starts with UC...). Use either url or channelId.

Code Examples

from supacrawlx import Client

client = Client("YOUR_API_KEY")
channel = client.youtube.channel("https://www.youtube.com/@RickAstleyYT")
print(channel.name, channel.subscriber_count)

Response

JSON
{
  "channelId": "UCuAXFkgsw1L7xaCfnd5JJOw",
  "name": "Rick Astley",
  "description": "The official Rick Astley YouTube channel.",
  "subscriberCount": 4500000,
  "videoCount": 85,
  "thumbnail": "https://yt3.googleusercontent.com/ytc/...",
  "creditsUsed": 1
}