> ## 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 (by id or link)

> Get video detail (by id or link)

Get video detail (by id or link)

**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/douplus/fetch_video_detail" \
  -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/douplus/fetch_video_detail
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/douplus/fetch_video_detail:
    post:
      tags:
        - TikHub - Douyin
      summary: Get video detail (by id or link)
      description: Get video detail (by id or link)
      operationId: post_tikhub_douyin_douplus_fetch_video_detail
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoDetailRequest'
            example:
              video: '7651708301280906538'
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    VideoDetailRequest:
      properties:
        cookie:
          title: Cookie
          description: User www.douyin.com web Cookie
          nullable: true
          type: string
        video:
          type: string
          title: Video
          description: >-
            Video ID, or share link/text. e.g. "7651708301280906538" or a share
            message containing a v.douyin.com link
          example: '7651708301280906538'
      type: object
      required:
        - video
      title: VideoDetailRequest
      description: Video Detail Request Model (by video ID or link)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````