Skip to main content
GET
/
youtube
/
subtitles
/
download
cURL
curl -X GET "https://apiv3.creatordb.app/youtube/subtitles/download?videoId=icxrUIGoEg8&vssId=.en" \
  -H "api-key: <YOUR_API-KEY_HERE>
{
  "_streaming": true
}

Authorizations

api-key
string
header
required

The valid CreatorDB API key for authentication.

Query Parameters

videoId
string
required

The unique YouTube video ID (length: 11 characters).

Required string length: 11
Pattern: ^[a-zA-Z0-9_-]{11}$
vssId
string
required

The subtitle language record code (example: a.en, .en, .zh-Hant).

Required string length: 1 - 20

Response

Subtitle data of the specified YouTube video downloaded successfully.

Streams subtitle data as a JSON file download (chunked transfer encoding). Content-Type: application/json, Content-Disposition: attachment; filename="{videoId}-{vssId}.json"

_streaming
enum<boolean>
Available options:
true
Last modified on March 20, 2026