Endpoint Playground
Test Crawlora's YouTube Channel Videos API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/youtube/channel/%40OpenAI/videos" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | @OpenAI | Channel ID, @handle, /c path, /user path, or full YouTube channel URL |
| continuation_token | string | No | Pagination token returned by a previous request |
{
"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"
}
}Public Playground
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.
Returns normalized video items from a channel's Videos tab and an optional continuation token.
{
"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 "https://api.crawlora.net/api/v1/youtube/channel/<id>/videos" \
-H "x-api-key: $CRAWLORA_API_KEY"