# 抖音视频评论和回复数据导出

**Use case:** 

导出抖音视频的评论与回复，获取评论内容、用户、点赞数、地区、发布时间和博主点赞标记，用于舆情与用户反馈分析。

## Input

```json
{
  "awemeUrls": [
    "https://www.douyin.com/video/7577614489533680959"
  ],
  "maxCommentsPerAweme": 200,
  "includeReplies": true,
  "maxRepliesPerComment": 20
}
```

## Output

```json
{
  "id": {
    "label": "Comment ID",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "createDate": {
    "label": "Posted on",
    "format": "date"
  },
  "createTime": {
    "label": "Posted (unix)",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Reply count (server)",
    "format": "number"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "isAuthorLiked": {
    "label": "Author liked",
    "format": "boolean"
  },
  "isLiked": {
    "label": "Liked by viewer",
    "format": "boolean"
  },
  "user": {
    "label": "Author",
    "format": "object"
  },
  "replies": {
    "label": "Replies",
    "format": "array"
  },
  "awemeId": {
    "label": "Aweme ID",
    "format": "text"
  },
  "awemeUrl": {
    "label": "Video URL",
    "format": "link"
  },
  "inputUrl": {
    "label": "Input",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Douyin 抖音 Comments Scraper - Comments & Replies](https://apify.com/zen-studio/douyin-comments-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zen-studio/douyin-comments-scraper) to learn more, explore other use cases, and run it yourself.