> ## 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 Creator Video List Analytics

> Get Creator Video List Analytics

Get Creator Video List Analytics

**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/tiktok/creator/get_video_list_analytics" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'  # see request schema below
```


## OpenAPI

````yaml openapi/tikhub-en.json POST /tikhub/tiktok/creator/get_video_list_analytics
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/tiktok/creator/get_video_list_analytics:
    post:
      tags:
        - TikHub - Tiktok
      summary: Get Creator Video List Analytics
      description: Get Creator Video List Analytics
      operationId: post_tikhub_tiktok_creator_get_video_list_analytics
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetVideoListRequest'
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    GetVideoListRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: User Cookie String
          default: Your_Cookie_String
        proxy:
          title: Proxy
          description: Optional HTTP Proxy Address
          default: ''
          nullable: true
          type: string
        start_date:
          type: string
          title: Start Date
          description: Query Start Date, e.g. '04-01-2025'
          default: 04-01-2025
        page:
          type: integer
          title: Page
          description: Page Number
          default: 0
        rules:
          type: string
          title: Rules
          description: List sorting rule, default is by publish time
          default: VIDEO_LIST_PUBLISH_TIME
      type: object
      title: GetVideoListRequest
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````