YepAPI
YouTube API

Channel About

Get channel description, links, and stats.

POST/v1/youtube/channel-about
$0.01/call

Usage

const res = await fetch('https://api.yepapi.com/v1/youtube/channel-about', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ id: 'UCAuUUnT6oDeKwE6v1NGQxug' }),
});
const { data } = await res.json();
console.log(data.description, data.subscriberCount);
curl -X POST https://api.yepapi.com/v1/youtube/channel-about \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id": "UCAuUUnT6oDeKwE6v1NGQxug"}'

Request Body

ParameterTypeRequiredDescriptionDefault
idstringYesYouTube channel ID
geostringNoCountry code for geo-specific results
langstringNoLanguage code

Response

{
  "ok": true,
  "data": {
    "description": "TED is a nonprofit devoted to spreading ideas...",
    "country": "United States",
    "subscriberCount": "24.5M",
    "viewCount": "10B",
    "joinedDate": "2006-06-27",
    "links": [
      {
        "title": "Official site",
        "url": "https://ted.com"
      }
    ]
  }
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.descriptionstringFull channel description text
data.countrystringCountry where the channel is based
data.subscriberCountstringFormatted subscriber count (e.g. 24.5M)
data.viewCountstringTotal channel view count (e.g. 10B)
data.joinedDatestringDate the channel was created in YYYY-MM-DD format
data.linksobject[]External links listed on the channel
data.links[].titlestringLink display title (e.g. Official site)
data.links[].urlstringExternal URL

On this page