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 YouTube videos by tag API Playground
Returns normalized videos from the public YouTube hashtag page for the supplied tag.
GETapiKey3 credits/requestyoutube.tagResponseDocYouTube
Endpoint details
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.
- Method
- GET
- Path
- /youtube/tag/{tag}
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- YouTube
- Parameters
- 4 documented fields
Request parameters
tag:pathtype:querycontinuation_token:queryx-api-key:header
Response schema fields
codedatadata.continuation_tokendata.metadata.meta.channelsCountdata.meta.videosCountdata.videosdata.videos[].channel_iddata.videos[].channel_titledata.videos[].comments_countdata.videos[].descriptiondata.videos[].dislikes_count
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/youtube/tag/<tag>" \
-H "x-api-key: <api-key>"