> ## Documentation Index
> Fetch the complete documentation index at: https://scrapebadger-feat-flights-booking-options.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Transcript

> Subtitle/caption tracks and the ASR voice-to-text transcript for a video.

<Note>
  Each request costs **10 credits**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/tiktok/videos/{video_id}/transcript
openapi: 3.1.0
info:
  title: ScrapeBadger TikTok API
  version: 1.0.0
  description: >-
    TikTok scraping API for user profiles, videos, comments, transcripts,
    hashtags, music/sounds, search, trending, and the EU Commercial Content (ad
    transparency) library. Returns clean structured JSON; handles signing,
    anti-bot bypass, and regional proxy routing automatically.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/tiktok/videos/{video_id}/transcript:
    get:
      tags:
        - TikTok Videos
      summary: Get Transcript
      description: >-
        Subtitle/caption tracks and the ASR voice-to-text transcript for a
        video.
      operationId: getTikTokTranscript
      parameters:
        - name: video_id
          in: path
          required: true
          schema:
            type: string
          description: The numeric TikTok video/aweme id.
        - name: region
          in: query
          schema:
            type: string
            default: US
          description: >-
            Content region (ISO 3166-1 alpha-2). Routes the request through a
            proxy and signer for that locale.
      responses:
        '200':
          description: Transcript
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptResponse'
              example:
                video_id: '7234567890123456789'
                subtitles:
                  - language: English
                    language_code: eng-US
                    source: ASR
                    url: https://v16-webapp.tiktok.com/subtitle.webvtt
                    format: webvtt
                voice_to_text: hey guys welcome back to my channel
                region: US
components:
  schemas:
    TranscriptResponse:
      type: object
      properties:
        video_id:
          type: string
        subtitles:
          type: array
          items:
            $ref: '#/components/schemas/TikTokSubtitle'
        voice_to_text:
          type: string
        region:
          type: string
      required:
        - video_id
        - region
    TikTokSubtitle:
      type: object
      properties:
        language:
          type: string
        language_code:
          type: string
        url:
          type: string
        source:
          type: string
          description: ASR vs creator.
        version:
          type: string
        format:
          type: string
      description: A subtitle/caption track for a video.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````