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

# Batch Get Video Information V1

> Batch Get Video Information V1

Batch Get Video Information V1

**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/app/v3/fetch_multi_video" \
  -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/app/v3/fetch_multi_video
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/app/v3/fetch_multi_video:
    post:
      tags:
        - TikHub - Douyin
      summary: Batch Get Video Information V1
      description: Batch Get Video Information V1
      operationId: post_tikhub_douyin_app_v3_fetch_multi_video
      requestBody:
        content:
          application/json:
            schema:
              items:
                type: string
              type: array
              title: Aweme Ids
            example:
              - '7448118827402972455'
              - '7126745726494821640'
              - '7448118827402972455'
              - '7126745726494821640'
              - '7448118827402972455'
              - '7126745726494821640'
              - '7448118827402972455'
              - '7126745726494821640'
              - '7448118827402972455'
              - '7126745726494821640'
        required: true
      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

````