> ## 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 image-text search V3

> Fetch image-text search V3

Fetch image-text search V3

**Pricing** — base \$0.0145 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 -X POST "https://api.aisa.one/apis/v1/tikhub/douyin/search/fetch_image_search_v3" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'  # see request schema below
```


## OpenAPI

````yaml openapi/tikhub-en.json POST /tikhub/douyin/search/fetch_image_search_v3
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/douyin/search/fetch_image_search_v3:
    post:
      tags:
        - TikHub - Douyin
      summary: Fetch image-text search V3
      description: Fetch image-text search V3
      operationId: post_tikhub_douyin_search_fetch_image_search_v3
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImageSearchV3Request'
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    ImageSearchV3Request:
      properties:
        keyword:
          type: string
          title: Keyword
          description: Search keyword
        cursor:
          type: integer
          title: Cursor
          description: Pagination cursor
          default: 0
        search_id:
          type: string
          title: Search Id
          description: Search ID for pagination
          default: ''
      type: object
      required:
        - keyword
      title: ImageSearchV3Request
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````