> ## 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 Dynamic Search Results

> Fetch Reddit APP Dynamic Search Results

Fetch Reddit APP Dynamic Search Results

**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_dynamic_search?query=python programming" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/reddit/app/fetch_dynamic_search
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_dynamic_search:
    get:
      tags:
        - TikHub - Reddit
      summary: Fetch Reddit APP Dynamic Search Results
      description: Fetch Reddit APP Dynamic Search Results
      operationId: get_tikhub_reddit_app_fetch_dynamic_search
      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: query
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            maxLength: 512
            description: Search query
            title: Query
          description: Search query
          example: python programming
        - name: search_type
          in: query
          required: false
          schema:
            enum:
              - post
              - community
              - comment
              - media
              - people
            type: string
            description: 'Search type: post( ), community( ), comment( ), media( ), people'
            default: post
            title: Search Type
          description: 'Search type: post( ), community( ), comment( ), media( ), people'
          example: post
        - name: sort
          in: query
          required: false
          schema:
            description: >-
              post/comment/media)/Sort method (only for post/comment/media):
              RELEVANCE( ), HOT( ), TOP( ), NEW( ), COMMENTS( , post
            title: Sort
            nullable: true
            enum:
              - RELEVANCE
              - HOT
              - TOP
              - NEW
              - COMMENTS
            type: string
          description: >-
            post/comment/media)/Sort method (only for post/comment/media):
            RELEVANCE( ), HOT( ), TOP( ), NEW( ), COMMENTS( , post
          example: RELEVANCE
        - name: time_range
          in: query
          required: false
          schema:
            description: >-
              post/media)/Time range (only for post/media): all( ), year( ),
              month( ), week( ), day( ), hour( 1
            title: Time Range
            nullable: true
            enum:
              - all
              - year
              - month
              - week
              - day
              - hour
            type: string
          description: >-
            post/media)/Time range (only for post/media): all( ), year( ),
            month( ), week( ), day( ), hour( 1
          example: all
        - name: safe_search
          in: query
          required: false
          schema:
            enum:
              - unset
              - strict
            type: string
            description: 'Safe search setting: unset, strict'
            default: unset
            title: Safe Search
          description: 'Safe search setting: unset, strict'
          example: unset
        - name: allow_nsfw
          in: query
          required: false
          schema:
            enum:
              - '0'
              - '1'
            type: string
            description: 'Allow NSFW content: 0, 1'
            default: '0'
            title: Allow Nsfw
          description: 'Allow NSFW content: 0, 1'
          example: '0'
        - name: after
          in: query
          required: false
          schema:
            type: string
            maxLength: 4096
            description: Pagination parameter
            default: ''
            title: After
          description: Pagination parameter
          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

````