# TikTok Comments - Scrape 100 Comments per Video

**Use case:** 

Extract up to 100 public TikTok comments with authors, likes, replies, timestamps, and source URLs in one ready-to-run task.

## Input

```json
{
  "postUrls": [
    "https://www.tiktok.com/@vida.luz70/video/7504077256151600414"
  ],
  "commentsPerPost": 100,
  "maxScrolls": 30
}
```

## Output

```json
{
  "text": {
    "label": "Comment",
    "format": "text"
  },
  "authorUsername": {
    "label": "Username",
    "format": "text"
  },
  "authorName": {
    "label": "Display name",
    "format": "text"
  },
  "authorProfileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "postedAt": {
    "label": "Posted",
    "format": "date"
  },
  "videoUrl": {
    "label": "Video",
    "format": "link"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "errorCode": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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