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
Search within a YouTube channel API Playground
Returns normalized video search items scoped to a specific channel, including the resolved top-level `query`.
GETapiKey3 credits/requestyoutube.channelSearchResponseDocYouTube
Endpoint details
Returns normalized video search items scoped to a specific channel, including the resolved top-level `query`.
- Method
- GET
- Path
- /youtube/channel/{id}/search
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- YouTube
- Parameters
- 4 documented fields
Request parameters
id:pathq:querycontinuation_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": {
"query": "gpt",
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"channel_title": "OpenAI",
"handle": "@OpenAI",
"items": [
{
"type": "video",
"position": 1,
"title": "Search Result 1",
"video_id": "abc123xyz89",
"duration": "04:20"
}
],
"continuation_token": "NEXT_TOKEN"
}
}cURL example
curl "https://api.crawlora.net/api/v1/youtube/channel/<id>/search?q=<q>" \
-H "x-api-key: <api-key>"