Skip to content

YouTube Raw Data

YouTube Raw Data API allows you to get public data anonymously from YouTube.

Access to this API is restricted. To get access to this API contact our support at hello@modash.io.

Our RAW API subscriptions come with a monthly limit for requests, every successful request consumes one from the limit. A 404 status code is treated as a successful request, indicating that the requested content could not be found.

Channel Info

Request

Returns details about the YouTube channel.

Security
accessToken
Query
urlstringrequired

YouTube url to channel's page, i.e. https://www.youtube.com/@{channelName}

Example:url=https://www.youtube.com/@MrBeast
GET
/raw/youtube/channel-info
curl -i -X GET \
  'https://api.modash.io/v1/raw/youtube/channel-info?url=https%3A%2F%2Fwww.youtube.com%2F%40MrBeast' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
channel_infoobjectrequired
successbooleanrequired
Response
{ "channel_info": { "channel_id": "string", "custom_url": "string", "username": "string", "is_removed": true, "is_hidden": true, "is_verified": true, "fullname": "string", "picture": "string", "description": "string", "country": "string", "followers": 0, "joined_at": "string", "has_join": true, "total_views": 0, "video_count": 0, "links": [], "handle": "string" }, "success": true }