> ## 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 low fan explosion list

> Fetch low fan explosion list

Fetch low fan explosion list

**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`.

## Example

```bash theme={null}
curl -X POST "https://api.aisa.one/apis/v1/tikhub/douyin/billboard/fetch_hot_total_low_fan_list" \
  -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/billboard/fetch_hot_total_low_fan_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_total_low_fan_list:
    post:
      tags:
        - TikHub - Douyin
      summary: Fetch low fan explosion list
      description: Fetch low fan explosion list
      operationId: post_tikhub_douyin_billboard_fetch_hot_total_low_fan_list
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Body_fetch_hot_total_low_fan_list_api_v1_douyin_billboard_fetch_hot_total_low_fan_list_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseModel'
components:
  schemas:
    Body_fetch_hot_total_low_fan_list_api_v1_douyin_billboard_fetch_hot_total_low_fan_list_post:
      properties:
        page:
          type: integer
          title: Page
          description: Page number
          default: 1
        page_size:
          type: integer
          title: Page Size
          description: Items per page
          default: 10
        date_window:
          type: integer
          title: Date Window
          description: >-
            Time window (hours): 1=last 1 hour, 24=last 1 day, 72=last 3 days,
            168=last 7 days; default 24
          default: 24
        keyword:
          type: string
          title: Keyword
          description: Search keyword for filtering the leaderboard; empty=all
          default: ''
        tags:
          items:
            $ref: '#/components/schemas/BillboardTag'
          type: array
          title: Tags
          description: >-
            Vertical tag filter; leave empty for all. Tag IDs are obtained from
            the fetch_content_tag endpoint.
          example:
            - children:
                - value: 62808
                - value: 62804
              value: 628
      type: object
      title: >-
        Body_fetch_hot_total_low_fan_list_api_v1_douyin_billboard_fetch_hot_total_low_fan_list_post
    ResponseModel:
      properties:
        code:
          type: integer
          title: Code
          description: HTTP status code
          default: 200
        request_id:
          title: Request Id
          description: Unique request identifier
          nullable: true
          type: string
        message:
          type: string
          title: Message
          description: Response message (EN-US)
          default: Request successful. This request will incur a charge.
        message_zh:
          type: string
          title: Message Zh
          description: Response message (ZH-CN)
          default: Request successful; this request will be billed.
        support:
          type: string
          title: Support
          description: Support message
          default: 'Discord: https://discord.gg/aMEAS8Xsvz'
        time:
          type: string
          title: Time
          description: The time the response was generated
        time_stamp:
          type: integer
          title: Time Stamp
          description: The timestamp the response was generated
        time_zone:
          type: string
          title: Time Zone
          description: The timezone of the response time
          default: America/Los_Angeles
        docs:
          title: Docs
          description: Link to the API Swagger documentation for this endpoint
          nullable: true
          type: string
        cache_message:
          title: Cache Message
          description: Cache message (EN-US)
          default: >-
            This response is cached and accessible via the URL below for 24
            hours at no extra cost. The cache is for request tracing only — it
            doesn't affect the API's data freshness and won't be returned
            through the API again.
          nullable: true
          type: string
        cache_message_zh:
          title: Cache Message Zh
          description: Cache message (ZH-CN)
          default: >-
            This response has been cached and can be viewed directly via the URL
            below; it is valid for 24 hours and accessing the cached link incurs
            no additional charge. The cache is for request tracing only and does
            not affect the freshness of the API data, nor will it be returned
            again through the API.
          nullable: true
          type: string
        cache_url:
          title: Cache Url
          description: The URL to access the cached result
          nullable: true
          type: string
        router:
          type: string
          title: Router
          description: The endpoint that generated this response
          default: ''
        params:
          title: Params
          description: The parameters used in the request
          default: {}
        data:
          title: Data
          description: The response data
          nullable: true
      type: object
      title: ResponseModel
    BillboardTag:
      properties:
        value:
          title: Value
          description: >-
            Top-level vertical category tag id, obtained from the
            fetch_content_tag endpoint
          nullable: true
          type: integer
        children:
          title: Children
          description: >-
            Sub-level vertical category tags, omit for all under this top-level
            tag
          nullable: true
          items:
            $ref: '#/components/schemas/BillboardTagChild'
          type: array
      type: object
      title: BillboardTag
    BillboardTagChild:
      properties:
        value:
          title: Value
          description: >-
            Sub-level vertical category tag id, obtained from the
            fetch_content_tag endpoint
          nullable: true
          type: integer
      type: object
      title: BillboardTagChild
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````