> ## 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 the highest quality play URL of the video

> Get the highest quality play URL of the video

Get the highest quality play URL of the video

**Pricing** — base \$0.00725 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 "https://api.aisa.one/apis/v1/tikhub/douyin/web/fetch_video_high_quality_play_url" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/douyin/web/fetch_video_high_quality_play_url
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/web/fetch_video_high_quality_play_url:
    get:
      tags:
        - TikHub - Douyin
      summary: Get the highest quality play URL of the video
      description: Get the highest quality play URL of the video
      operationId: get_tikhub_douyin_web_fetch_video_high_quality_play_url
      parameters:
        - name: aweme_id
          in: query
          required: false
          schema:
            type: string
            description: Video id
            title: Aweme Id
          description: Video id
          example: '7512756548356492544'
        - name: share_url
          in: query
          required: false
          schema:
            type: string
            description: Optional, share link
            title: Share Url
          description: Optional, share link
          example: https://www.douyin.com/video/7512756548356492544
        - name: region
          in: query
          required: false
          schema:
            type: string
            description: >-
              Optional, ISO country code (e.g. CN/US/HK). Pass CN to get
              China-region CDN URLs for faster download in mainland China.
            title: Region
          description: >-
            Optional, ISO country code (e.g. CN/US/HK). Pass CN to get
            China-region CDN URLs for faster download in mainland China.
          example: CN
      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

````