# Export Douyin Video Comments

**Use case:** 

Export up to 500 top-level comments from a Douyin video without replies. Get text, authors, likes, timestamps, regions, and creator-liked signals.

## Input

```json
{
  "awemeUrls": [
    "https://www.douyin.com/video/7577614489533680959"
  ],
  "maxCommentsPerAweme": 500,
  "includeReplies": false,
  "maxRepliesPerComment": 100
}
```

## 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.