Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Retrieve the videos tab for a YouTube channel API Playground

Returns normalized video items from a channel's Videos tab and an optional continuation token.

GETapiKey3 credits/requestyoutube.channelFeedResponseDocYouTube

Endpoint

Choose one catalog endpoint for this request.

13 shown
GETapiKey3 credits/requestyoutube.channelFeedResponseDocYouTube
GET /youtube/channel/{id}/videos

Retrieve the videos tab for a YouTube channel

Returns normalized video items from a channel's Videos tab and an optional continuation token.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Path parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
    "channel_title": "OpenAI",
    "handle": "@OpenAI",
    "channel_url": "https://www.youtube.com/@OpenAI",
    "items": [
      {
        "type": "video",
        "position": 1,
        "title": "Channel Video 1",
        "video_id": "abc123xyz89",
        "duration": "10:05"
      }
    ],
    "continuation_token": "NEXT_TOKEN"
  }
}

Endpoint details

Returns normalized video items from a channel's Videos tab and an optional continuation token.

Method
GET
Path
/youtube/channel/{id}/videos
Authentication
apiKey
Credit cost
3 credits/request
Platform
YouTube
Parameters
3 documented fields

Request parameters

id:pathcontinuation_token:queryx-api-key:header

Response schema fields

codedatadata.channel_iddata.channel_titledata.channel_urldata.continuation_tokendata.handledata.itemsdata.items[].badgesdata.items[].channel_iddata.items[].channel_thumbnaildata.items[].channel_title

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
    "channel_title": "OpenAI",
    "handle": "@OpenAI",
    "channel_url": "https://www.youtube.com/@OpenAI",
    "items": [
      {
        "type": "video",
        "position": 1,
        "title": "Channel Video 1",
        "video_id": "abc123xyz89",
        "duration": "10:05"
      }
    ],
    "continuation_token": "NEXT_TOKEN"
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/youtube/channel/<id>/videos" \
  -H "x-api-key: <api-key>"