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