Endpoint Playground
Test Crawlora's YouTube Channel Shorts 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/<id>/shorts" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Channel ID, @handle, /c path, /user path, or full YouTube channel URL |
{
"code": 200,
"msg": "OK",
"data": {
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"channel_title": "OpenAI",
"handle": "@OpenAI",
"shorts": [
{
"position": 1,
"video_id": "abc123xyz89",
"title": "OpenAI demo clip",
"url": "https://www.youtube.com/shorts/abc123xyz89",
"view_count": "1.2M views"
}
]
}
}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 short-form video entries from a channel's Shorts tab.
{
"code": 200,
"msg": "OK",
"data": {
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"channel_title": "OpenAI",
"handle": "@OpenAI",
"shorts": [
{
"position": 1,
"video_id": "abc123xyz89",
"title": "OpenAI demo clip",
"url": "https://www.youtube.com/shorts/abc123xyz89",
"view_count": "1.2M views"
}
]
}
}curl "https://api.crawlora.net/api/v1/youtube/channel/<id>/shorts" \
-H "x-api-key: $CRAWLORA_API_KEY"