Endpoint Playground
Test Crawlora's Retrieve YouTube videos by tag 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/tag/<tag>?type=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| tag (path) | string | Yes | Tag to filter videos | |
| type | string | No | all | Result tab to load |
| continuation_token | string | No | Continuation token for pagination, first page if empty |
{
"code": 200,
"msg": "OK",
"data": {
"videos": [
{
"id": "QpM5pr-jS9I",
"title": "OpenAI Playground Tutorial for Beginners",
"duration_seconds": 938,
"published_at": "2023-07-18T15:31:09Z",
"channel_title": "Jennifer Marie",
"channel_id": "UC-ooPg34j8PK3osA4l-726Q",
"views_count": 47545
}
],
"meta": {
"VideosCount": 123456,
"ChannelsCount": 1200
},
"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 videos from the public YouTube hashtag page for the supplied tag. Set `type=shorts` to use the Shorts tab, or pass `continuation_token` from a previous response to fetch the next page.
{
"code": 200,
"msg": "OK",
"data": {
"videos": [
{
"id": "QpM5pr-jS9I",
"title": "OpenAI Playground Tutorial for Beginners",
"duration_seconds": 938,
"published_at": "2023-07-18T15:31:09Z",
"channel_title": "Jennifer Marie",
"channel_id": "UC-ooPg34j8PK3osA4l-726Q",
"views_count": 47545
}
],
"meta": {
"VideosCount": 123456,
"ChannelsCount": 1200
},
"continuation_token": "NEXT_TOKEN"
}
}curl "https://api.crawlora.net/api/v1/youtube/tag/<tag>" \
-H "x-api-key: $CRAWLORA_API_KEY"