> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get post comments

> Get post comments

Get post comments

**Pricing** — base \$0.00145 per successful call (provider cost × 1.45; final charge scales by your plan multiplier). Charged only when the upstream response body `code` is `200`.

<Note>
  Response structure is not yet fully documented — **refer to the actual API response**.
</Note>

## Example

```bash theme={null}
curl "https://api.aisa.one/apis/v1/tikhub/youtube/web_v2/get_post_comments" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/youtube/web_v2/get_post_comments
openapi: 3.0.0
info:
  title: TikHub API
  description: >-
    Multi-platform social media data via TikHub — Douyin, TikTok, Bilibili,
    Kuaishou, Weibo, Xiaohongshu, Zhihu, and commercial
    (Xingtu/Huahuo/Billboard) endpoints.
  version: 1.0.0
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /tikhub/youtube/web_v2/get_post_comments:
    get:
      tags:
        - TikHub - Youtube
      summary: Get post comments
      description: Get post comments
      operationId: get_tikhub_youtube_web_v2_get_post_comments
      parameters:
        - name: post_id
          in: query
          required: false
          schema:
            type: string
            description: Post ID (required for first request
            title: Post Id
          description: Post ID (required for first request
          example: UgkxiCSRfD6g7SPlWGPDa3vbP7aIsytXRkvy
        - name: continuation_token
          in: query
          required: false
          schema:
            type: string
            description: Pagination token
            title: Continuation Token
          description: Pagination token
        - name: language_code
          in: query
          required: false
          schema:
            type: string
            description: Language code
            default: zh-CN
            title: Language Code
          description: Language code
          example: zh-CN
        - name: country_code
          in: query
          required: false
          schema:
            type: string
            title: Country Code
            description: Country code
            default: US
          description: Country code
          example: US
        - name: need_format
          in: query
          required: false
          schema:
            type: boolean
            description: Whether to clean and format the data
            default: true
            title: Need Format
          description: Whether to clean and format the data
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````