Channel

Channel Resolver

Description

Retrieve channel's url

Endpoint

GET api/v1/realtime/social/youtube/v1/channel/resolver?url={url}

Parameters

Param
Required
Param Type
Description

url

Yes

Path Param

String | The channel URL.

chevron-rightExample Requesthashtag
curl -X GET 'https://api.webit.live/api/v1/realtime/social/youtube/v1/channel/resolver?url=https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUC-9-kyTW8ZkZNDHQJ6FgpwQ' \
--header 'Authorization: Basic <credential string>'
chevron-rightExample Responsehashtag
{
    "url": "https://www.youtube.com/channel/UC-9-kyTW8ZkZNDHQJ6FgpwQ",
    "channelId": "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
    "type": "Channel"
}

Channel About

Description

Retrieve metadata for a YouTube channel, including its name, description, subscriber count, and engagement metrics.

Endpoint

GET api/v1/realtime/social/youtube/v1/channel/{channelId}/about

Parameters

Param
Required
Param Type
Description

channelId

Yes

Path Param

String | The channel ID.

chevron-rightExample Requesthashtag
chevron-rightExample Responsehashtag

Channel Content

Description

Retrieve channel's videos and Shorts. The order of the results is by their upload date.

Endpoint

GET api/v1/realtime/social/youtube/v1/channel/{channelId}/content?type={type}

Parameters

Param
Required
Param Type
Description

channelId

Yes

Path Param

String | The channel ID.

type

Yes

Path Param

String | Type of content to retrieve, Available values: videos, shorts

cursor

No

Query Param

String | Pagination cursor. Use for subsequent requests

Limitations

  • Results per request: 30 results.

chevron-rightExample Requesthashtag
chevron-rightExample Responsehashtag

Last updated