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

List transcript languages for a YouTube video API Playground

Returns the transcript languages exposed by YouTube for a specific video.

GETapiKey1 credit/requestyoutube.transcriptLanguagesResponseDocYouTube

Endpoint

Choose one catalog endpoint for this request.

13 shown
GETapiKey1 credit/requestyoutube.transcriptLanguagesResponseDocYouTube
GET /youtube/transcript/{id}/languages

List transcript languages for a YouTube video

Returns the transcript languages exposed by YouTube for a specific video.

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": [
    {
      "language": "English",
      "language_code": "en",
      "is_generated": false,
      "is_translatable": true
    },
    {
      "language": "Spanish",
      "language_code": "es",
      "is_generated": false,
      "is_translatable": true
    }
  ]
}

Endpoint details

Returns the transcript languages exposed by YouTube for a specific video.

Method
GET
Path
/youtube/transcript/{id}/languages
Authentication
apiKey
Credit cost
1 credit/request
Platform
YouTube
Parameters
2 documented fields

Request parameters

id:pathx-api-key:header

Response schema fields

codedatadata[].is_generateddata[].is_translatabledata[].languagedata[].language_codemsg

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "language": "English",
      "language_code": "en",
      "is_generated": false,
      "is_translatable": true
    },
    {
      "language": "Spanish",
      "language_code": "es",
      "is_generated": false,
      "is_translatable": true
    }
  ]
}

cURL example

curl "https://api.crawlora.net/api/v1/youtube/transcript/<id>/languages" \
  -H "x-api-key: <api-key>"