# Scrape TikTok video comments in bulk

**Use case:** 

Export comments from any TikTok video with author, text, likes, replies and timestamp. No TikTok account or API key required.

## Input

```json
{
  "videos": [
    "https://www.tiktok.com/@tiktok/video/7657279285719207198"
  ],
  "maxCommentsPerVideo": 50,
  "concurrency": 4,
  "delayBetweenRequests": 1,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "commentId": {
    "label": "Comment id"
  },
  "authorHandle": {
    "label": "Author handle"
  },
  "authorNickname": {
    "label": "Author nickname"
  },
  "authorUserId": {
    "label": "Author user id"
  },
  "text": {
    "label": "Text"
  },
  "createTime": {
    "label": "Create time"
  },
  "diggCount": {
    "label": "Digg count"
  },
  "replyCount": {
    "label": "Reply count"
  },
  "videoId": {
    "label": "Video id"
  }
}
```

## About this Actor

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