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

# 综合搜索（原始数据，推荐使用V2）

> 综合搜索（原始数据，推荐使用V2）

综合搜索（原始数据，推荐使用V2）

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

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

## 示例

```bash theme={null}
curl "https://api.aisa.one/apis/v1/tikhub/youtube/web_v2/get_general_search?search_query=Python编程" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub.json GET /tikhub/youtube/web_v2/get_general_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/youtube/web_v2/get_general_search:
    get:
      tags:
        - Other
      summary: General search (raw data, recommend V2)
      description: General search (raw data, recommend V2)
      operationId: get_tikhub_youtube_web_v2_get_general_search
      parameters:
        - name: search_query
          in: query
          required: true
          schema:
            type: string
            maxLength: 200
            description: Search keyword
            title: Search Query
          description: Search keyword
          example: Python
        - name: language_code
          in: query
          required: false
          schema:
            type: string
            description: Language code
            default: zh-CN
            title: Language Code
          description: Language code
        - name: country_code
          in: query
          required: false
          schema:
            type: string
            title: Country Code
            description: Country code
            default: US
          description: Country code
        - name: time_zone
          in: query
          required: false
          schema:
            type: string
            description: Time zone
            default: America/Los_Angeles
            title: Time Zone
          description: Time zone
        - name: upload_time
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/YouTubeUploadTimeAPI'
              - type: 'null'
            description: Upload time filter
            examples:
              hour:
                summary: '1'
                value: hour
              today:
                summary: See API documentation
                value: today
              week:
                summary: See API documentation
                value: week
              month:
                summary: See API documentation
                value: month
              year:
                summary: See API documentation
                value: year
            title: Upload Time
          description: Upload time filter
        - name: duration
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/YouTubeDurationAPI'
              - type: 'null'
            description: Duration filter
            examples:
              short:
                summary: <4
                value: short
              medium:
                summary: 4-20
                value: medium
              long:
                summary: '>20'
                value: long
            title: Duration
          description: Duration filter
        - name: content_type
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/YouTubeContentTypeAPI'
              - type: 'null'
            description: Content type filter
            examples:
              video:
                summary: See API documentation
                value: video
              channel:
                summary: See API documentation
                value: channel
              playlist:
                summary: See API documentation
                value: playlist
              movie:
                summary: See API documentation
                value: movie
            title: Content Type
          description: Content type filter
        - name: feature
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/YouTubeFeatureAPI'
              - type: 'null'
            description: Feature filter
            examples:
              '360':
                summary: '360'
                value: '360'
              hd:
                summary: See API documentation
                value: hd
              4k:
                summary: 4K
                value: 4k
              subtitles:
                summary: See API documentation
                value: subtitles
              live:
                summary: See API documentation
                value: live
              creative_commons:
                summary: See API documentation
                value: creative_commons
              vr180:
                summary: VR180
                value: vr180
              3d:
                summary: 3D
                value: 3d
              hdr:
                summary: HDR
                value: hdr
              location:
                summary: See API documentation
                value: location
              purchased:
                summary: See API documentation
                value: purchased
            title: Feature
          description: Feature filter
        - name: sort_by
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/YouTubeSearchSortAPI'
              - type: 'null'
            description: Sort by
            examples:
              relevance:
                summary: See API documentation
                value: relevance
              upload_date:
                summary: See API documentation
                value: upload_date
              view_count:
                summary: See API documentation
                value: view_count
              rating:
                summary: See API documentation
                value: rating
            title: Sort By
          description: Sort by
        - name: continuation_token
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Pagination token
            title: Continuation Token
          description: Pagination token
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    YouTubeUploadTimeAPI:
      type: string
      enum:
        - hour
        - today
        - week
        - month
        - year
      title: YouTubeUploadTimeAPI
      description: YouTube - API
    YouTubeDurationAPI:
      type: string
      enum:
        - short
        - medium
        - long
      title: YouTubeDurationAPI
      description: YouTube - API
    YouTubeContentTypeAPI:
      type: string
      enum:
        - video
        - channel
        - playlist
        - movie
      title: YouTubeContentTypeAPI
      description: YouTube - API
    YouTubeFeatureAPI:
      type: string
      enum:
        - live
        - 4k
        - hd
        - subtitles
        - creative_commons
        - '360'
        - vr180
        - 3d
        - hdr
        - location
        - purchased
      title: YouTubeFeatureAPI
      description: YouTube - API
    YouTubeSearchSortAPI:
      type: string
      enum:
        - relevance
        - upload_date
        - view_count
        - rating
      title: YouTubeSearchSortAPI
      description: YouTube - API
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````