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

# 获取Reddit APP动态搜索结果

> 获取Reddit APP动态搜索结果

获取Reddit APP动态搜索结果

**计费** — 成功调用基准价 \$0.00145（= provider 成本 × 1.45；最终扣费按你的套餐倍率浮动）。仅当上游响应体 `code` 为 `200` 时计费。

<Note>
  响应结构尚未完整文档化 —— **以实际调用为准**。
</Note>

## 示例

```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.json GET /tikhub/reddit/app/fetch_dynamic_search
openapi: 3.1.0
info:
  title: AIsa API
  description: >-
    Capability layer for the agentic economy. Models, skills, payments, and
    deployment — everything AI agents need to reason, act, and transact. This
    spec consolidates all AIsa API endpoints into a single reference.
  version: 1.0.0
  contact:
    name: AIsa
    url: https://aisa.one
    email: developer@aisa.one
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  termsOfService: https://aisa.one/tos
servers:
  - url: https://api.aisa.one/apis/v1
    description: AIsa Data APIs (Bearer auth — register at https://aisa.one)
  - url: https://api.aisa.one/apis/v2
    description: >-
      AIsa Data APIs (x402 pay-per-call) — same surface as /apis/v1, mirrored.
      No registration; receive HTTP 402 challenge, settle with stablecoin
      micropayment. Spec: https://www.x402.org. Open-source gateway
      implementation: https://github.com/AIsa-team/aisa-proxy
    x-implementation: https://github.com/AIsa-team/aisa-proxy
  - url: https://api.aisa.one/v1
    description: AIsa LLM Inference (OpenAI-compatible, Bearer auth)
  - url: https://api.aisa.one/v1beta
    description: AIsa Gemini-compatible GenerateContent (Bearer auth)
security:
  - BearerAuth: []
tags:
  - name: AI Models
    description: >-
      Access 50+ LLMs via OpenAI-compatible, Anthropic, and Google Gemini
      interfaces
  - name: Account & Usage
    description: >-
      Programmatic account balance and usage endpoints for cost monitoring and
      alerting
  - name: Agent Email
    description: >-
      AI-agent email accounts, inboxes, threads, drafts, and message send/reply
      via AgentMail.to
  - name: Crypto Data
    description: Cryptocurrency prices, markets, and exchange data via CoinGecko
  - name: Financial Data
    description: Stock prices, financials, analyst estimates, SEC filings, and macro data
  - name: Image Generation
    description: Generate and edit images using AI models
  - name: Instagram
    description: >-
      Read public Instagram data — profiles, posts, reels, highlights, comments,
      and Google-backed search
  - name: Market Intelligence
    description: ''
  - name: Other
    description: ''
  - name: Pinterest
    description: >-
      Read public Pinterest data — search pins, fetch pin details, and browse
      boards
  - name: Prediction Markets
    description: Query prediction markets — Polymarket, Kalshi, and matching markets
  - name: Reddit
    description: >-
      Read public Reddit data — search posts, browse subreddits, and fetch
      comments
  - name: SEO & Search Data
    description: >-
      SERP, keywords, backlinks, domain and competitor analysis — DataForSEO,
      Semrush, and Ahrefs
  - name: Sales Intelligence
    description: B2B contact and company enrichment, search, and outreach via Apollo.io
  - name: Scholar Search
    description: Search academic papers and research
  - name: Twitter / X
    description: >-
      Read, search, and interact with Twitter/X — profiles, tweets, communities,
      trends, and engagement
  - name: WaveInflu
    description: ''
  - name: Web & News Search
    description: >-
      Search the web and news — Tavily search, Oxylabs AI-answer-engine queries,
      and model-grounded search
  - name: YouTube Search
    description: Search YouTube videos
paths:
  /tikhub/reddit/app/fetch_dynamic_search:
    get:
      tags:
        - Other
      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:
            anyOf:
              - enum:
                  - RELEVANCE
                  - HOT
                  - TOP
                  - NEW
                  - COMMENTS
                type: string
              - type: 'null'
            description: >-
              post/comment/media)/Sort method (only for post/comment/media):
              RELEVANCE( ), HOT( ), TOP( ), NEW( ), COMMENTS( , post
            title: Sort
          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:
            anyOf:
              - type: string
                enum:
                  - all
                  - year
                  - month
                  - week
                  - day
                  - hour
              - type: 'null'
            description: >-
              post/media)/Time range (only for post/media): all( ), year( ),
              month( ), week( ), day( ), hour( 1
            title: Time Range
          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

````