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

# Get video detail

> Get video detail

Get video detail

**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 -X POST "https://api.aisa.one/apis/v1/tikhub/douyin/index/fetch_item_base" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```


## OpenAPI

````yaml openapi/tikhub-en.json POST /tikhub/douyin/index/fetch_item_base
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/index/fetch_item_base:
    post:
      tags:
        - TikHub - Douyin
      summary: Get video detail
      description: Get video detail
      operationId: post_tikhub_douyin_index_fetch_item_base
      parameters:
        - name: item_id
          in: query
          required: true
          schema:
            type: string
            description: 'Video ID (Douyin aweme id, numeric). Example: 7660090930283744575'
            title: Item Id
          description: 'Video ID (Douyin aweme id, numeric). Example: 7660090930283744575'
      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

````