# Weibo Post Comments Scraper API

**Use case:** 

Export public comments from a known Weibo post ID with authors, likes, reply relationships, translations, and evidence URLs.

## Input

```json
{
  "searchQueries": [],
  "postIds": [
    "5326750785470485"
  ],
  "sortBy": "relevance",
  "maxPostsPerQuery": 1,
  "includeComments": true,
  "maxCommentsPerPost": 10,
  "translateToEnglish": true
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "postId": {
    "label": "Post id",
    "format": "string"
  },
  "commentId": {
    "label": "Comment id",
    "format": "string"
  },
  "parentCommentId": {
    "label": "Parent comment id",
    "format": "string"
  },
  "textEnglish": {
    "label": "Text english",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "authorName": {
    "label": "Author name",
    "format": "string"
  },
  "likesCount": {
    "label": "Likes count",
    "format": "number"
  },
  "createdAt": {
    "label": "Created at",
    "format": "string"
  },
  "evidenceUrl": {
    "label": "Evidence",
    "format": "string"
  }
}
```

## About this Actor

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