# Extract TikTok captions in a chosen language for review

**Use case:** 

Fetch transcripts from public TikTok videos using the selected language code to support multilingual review workflows.

## Input

```json
{
  "videoUrls": [
    "https://www.tiktok.com/@stoolpresidente/video/7499229683859426602",
    "https://www.tiktok.com/@khaby.lame/video/7137423965982653702"
  ],
  "useAiFallback": false,
  "maxTranscripts": 2,
  "language": "en"
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "isAiTranscript": {
    "label": "AI?",
    "format": "boolean"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Transcript Scraper](https://apify.com/khadinakbar/tiktok-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/tiktok-transcript-scraper) to learn more, explore other use cases, and run it yourself.