Skip to main content
GET
/
youtube
/
subtitles
/
meta
cURL
curl -X GET "https://apiv3.creatordb.app/youtube/subtitles/meta?videoId=icxrUIGoEg8" \
-H "api-key: <YOUR_API_KEY>"
{
  "data": {
    "videoId": "icxrUIGoEg8",
    "channelId": "UCuAXFkgsw1L7xaCfnd5JJOw",
    "availableSubtitles": [
      {
        "vssId": "a.en",
        "lang": "English (Auto-generated)",
        "langCode": "en"
      },
      {
        "vssId": ".en",
        "lang": "English",
        "langCode": "en"
      },
      {
        "vssId": ".zh-Hant",
        "lang": "Chinese (Traditional)",
        "langCode": "zh-Hant"
      }
    ]
  },
  "creditsUsed": 1,
  "creditsAvailable": -1,
  "traceId": "f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0",
  "timestamp": 1750732453635,
  "errorCode": "",
  "errorDescription": "",
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.creatordb.app/llms.txt

Use this file to discover all available pages before exploring further.

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}$
Example:

"icxrUIGoEg8"

Response

Metadata of YouTube subtitles returned successfully.

YouTube Subtitle Meta API response - available subtitle metadata for a video

data
object
required

Subtitle metadata for the video.

creditsUsed
integer
required

Number of API credits consumed by this request.

Example:

1

creditsAvailable
integer
required

Number of API credits remaining. Returns -1 if the quota is unlimited.

Example:

-1

traceId
string
required

Unique trace ID for each request.

Example:

"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0"

timestamp
integer
required

Time the response was generated, represented as a Unix timestamp in milliseconds.

Example:

1750732453635

errorCode
string
required

Error code returned if the request fails. Empty if the request is successful.

Example:

""

errorDescription
string
required

Description of the error. Empty if the request is successful.

Example:

""

success
boolean
required

true if the request is successful.

Example:

true

Last modified on May 8, 2026