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

# Fetch Reddit APP Post Comments

> Fetch Reddit APP Post Comments

Fetch Reddit APP 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/reddit/app/fetch_post_comments?post_id=t3_1ojnvca" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/reddit/app/fetch_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/reddit/app/fetch_post_comments:
    get:
      tags:
        - TikHub - Reddit
      summary: Fetch Reddit APP Post Comments
      description: Fetch Reddit APP Post Comments
      operationId: get_tikhub_reddit_app_fetch_post_comments
      parameters:
        - name: language
          in: query
          required: false
          schema:
            type: string
            minLength: 2
            maxLength: 16
            pattern: ^[A-Za-z]{2,3}(?:-[A-Za-z0-9]{2,8})*$
            description: >-
              Preferred response language as an IETF language tag; default:
              en-US
            default: en-US
            title: Language
          description: 'Preferred response language as an IETF language tag; default: en-US'
        - name: post_id
          in: query
          required: true
          schema:
            type: string
            minLength: 4
            maxLength: 20
            pattern: ^t3_[a-z0-9]{1,17}$
            description: Post ID
            title: Post Id
          description: Post ID
          example: t3_1ojnvca
        - name: sort_type
          in: query
          required: false
          schema:
            enum:
              - CONFIDENCE
              - NEW
              - TOP
              - HOT
              - CONTROVERSIAL
              - OLD
              - RANDOM
            type: string
            description: 'Sort method: CONFIDENCE, NEW, TOP, HOT, CONTROVERSIAL, OLD, RANDOM'
            default: CONFIDENCE
            title: Sort Type
          description: 'Sort method: CONFIDENCE, NEW, TOP, HOT, CONTROVERSIAL, OLD, RANDOM'
          example: CONFIDENCE
        - name: after
          in: query
          required: false
          schema:
            type: string
            maxLength: 4096
            description: Pagination parameter for fetching next page
            default: ''
            title: After
          description: Pagination parameter for fetching next page
          example: ''
        - name: need_format
          in: query
          required: false
          schema:
            type: boolean
            description: Whether to clean and format the data
            default: false
            title: Need Format
          description: Whether to clean and format the data
          example: false
      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

````