# TikTok Comments Data Extractor

**Use case:** 

Extract comments and author details from TikTok videos without login or proxy. Provide multiple URLs to get insights on metrics such as likes, text and more.

## Input

```json
{
  "videoUrls": [
    "https://www.tiktok.com/@arianagrande/video/7462289099919615275",
    "https://www.tiktok.com/@franksinatra/video/7585614015011818766"
  ],
  "maxCommentsPerVideo": 30,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "videoUrl": {
    "label": "Video URL",
    "format": "link"
  },
  "authorNickname": {
    "label": "Nickname",
    "format": "text"
  },
  "author": {
    "label": "Username",
    "format": "text"
  },
  "text": {
    "label": "Comment",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "timestamp": {
    "label": "Posted At",
    "format": "text"
  }
}
```

## About this Actor

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