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 shorts tab for a YouTube channel API Playground
Returns normalized short-form video entries from a channel's Shorts tab.
GETapiKey3 credits/requestyoutube.channelShortsResponseDocYouTube
Endpoint details
Returns normalized short-form video entries from a channel's Shorts tab.
- Method
- GET
- Path
- /youtube/channel/{id}/shorts
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- YouTube
- Parameters
- 2 documented fields
Request parameters
id:pathx-api-key:header
Response schema fields
codedatadata.channel_iddata.channel_titledata.channel_urldata.handledata.shortsdata.shorts[].positiondata.shorts[].thumbnaildata.shorts[].titledata.shorts[].urldata.shorts[].video_id
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/youtube/channel/<id>/shorts" \
-H "x-api-key: <api-key>"