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

Choose one catalog endpoint for this request.

13 shown
GETapiKey3 credits/requestyoutube.tagResponseDocYouTube
GET /youtube/tag/{tag}

Retrieve YouTube videos by tag

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.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Path parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "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"
  }
}

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>"