Endpoint Playground
Test Crawlora's Search within a YouTube channel 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>/search?q=<q>" \
-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 | |
| q | string | Yes | Search query | |
| continuation_token | string | No | Pagination token returned by a previous request |
{
"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"
}
}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 search items scoped to a specific channel, including the resolved top-level `query`.
{
"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 "https://api.crawlora.net/api/v1/youtube/channel/<id>/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"