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

# Fetch account fan data trend

> Fetch account fan data trend

Fetch account fan data trend

**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 "https://api.aisa.one/apis/v1/tikhub/douyin/billboard/fetch_hot_account_trends_list?sec_uid=MS4wLjABAAAA8U_l6rBzmy7bcy6xOJel4v0RzoR_wfAubGPeJimN__4" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/douyin/billboard/fetch_hot_account_trends_list
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/billboard/fetch_hot_account_trends_list:
    get:
      tags:
        - TikHub - Douyin
      summary: Fetch account fan data trend
      description: Fetch account fan data trend
      operationId: get_tikhub_douyin_billboard_fetch_hot_account_trends_list
      parameters:
        - name: sec_uid
          in: query
          required: true
          schema:
            type: string
            description: User sec_id
            title: Sec Uid
          description: User sec_id
          example: MS4wLjABAAAA8U_l6rBzmy7bcy6xOJel4v0RzoR_wfAubGPeJimN__4
        - name: option
          in: query
          required: false
          schema:
            type: integer
            description: 'Options: 2=New likes, 3=New posts, 4=New comments, 5=New shares'
            example: 2
            default: 2
            title: Option
          description: 'Options: 2=New likes, 3=New posts, 4=New comments, 5=New shares'
        - name: date_window
          in: query
          required: false
          schema:
            type: integer
            description: >-
              Data point granularity (hours): 1=one point per hour, 24=one point
              per day; default 24
            example: 1
            default: 24
            title: Date Window
          description: >-
            Data point granularity (hours): 1=one point per hour, 24=one point
            per day; default 24
      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

````