# 微博评论回复 API | Weibo comment replies

**Use case:** 

微博评论回复 / Weibo comment replies with SocialDataX. 使用评论 Dataset 中的 post_id 和 comment_id 导出二级评论回复，包含回复内容、回复用户、互动指标、时间和分页信息，适合评论链路分析、CSV、Excel、JSON 和 API workflows。

## Input

```json
{
  "operation": "get_post_comment_replies",
  "keyword": "露营",
  "post_id": "5315565853870921",
  "comment_id": "5315630371706462",
  "sort_type": "hot",
  "page_token": "***",
  "max_items": 50,
  "auto_paginate": true
}
```

## Output

```json
{
  "operation": {
    "label": "Operation",
    "format": "string"
  },
  "item_index": {
    "label": "Item index",
    "format": "integer"
  },
  "query_post_id": {
    "label": "Query post ID",
    "format": "string"
  },
  "post_id": {
    "label": "Post ID",
    "format": "string"
  },
  "comment_id": {
    "label": "Comment ID",
    "format": "string"
  },
  "content": {
    "label": "Content",
    "format": "string"
  },
  "author_user_id": {
    "label": "Author user ID",
    "format": "string"
  },
  "author_name": {
    "label": "Author name",
    "format": "string"
  },
  "like_count": {
    "label": "Like count",
    "format": "integer"
  },
  "reply_count": {
    "label": "Reply count",
    "format": "integer"
  },
  "page_request_index": {
    "label": "Page request index",
    "format": "integer"
  },
  "page_has_more": {
    "label": "Page has more",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [微博 / Weibo API - 热搜、搜索、评论、用户数据](https://apify.com/socialdatax/socialdatax-weibo-data-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/socialdatax/socialdatax-weibo-data-api) to learn more, explore other use cases, and run it yourself.