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

> Get creator video highlights

Get creator video highlights

**Pricing** — base \$0.0087 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/bilibili/huahuo/upper_archive_highlights?upper_mid=1" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/bilibili/huahuo/upper_archive_highlights
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/bilibili/huahuo/upper_archive_highlights:
    get:
      tags:
        - TikHub - Bilibili
      summary: Get creator video highlights
      description: Get creator video highlights
      operationId: get_tikhub_bilibili_huahuo_upper_archive_highlights
      parameters:
        - name: upper_mid
          in: query
          required: true
          schema:
            type: integer
            description: Creator UID
            title: Upper Mid
          description: Creator UID
        - name: day_range
          in: query
          required: false
          schema:
            type: integer
            description: 'Time period: 1=last 30 days, 2=last 90 days, 3=last 180 days'
            default: 3
            title: Day Range
          description: 'Time period: 1=last 30 days, 2=last 90 days, 3=last 180 days'
      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

````