> ## 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 live room history list

> Fetch live room history list

Fetch live room history 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`.

<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/douyin/creator_v2/fetch_live_room_history_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/creator_v2/fetch_live_room_history_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/creator_v2/fetch_live_room_history_list:
    post:
      tags:
        - TikHub - Douyin
      summary: Fetch live room history list
      description: Fetch live room history list
      operationId: post_tikhub_douyin_creator_v2_fetch_live_room_history_list
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LiveRoomHistoryListRequest'
              description: Live room history list request parameters
            example:
              cookie: Your_Cookie_Here
              start_date: '2025-09-11'
              end_date: '2025-10-11'
              limit: 400
              need_living: 1
              download: 0
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    LiveRoomHistoryListRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: User Cookie
          example: Your_Cookie_Here
        start_date:
          type: string
          title: Start Date
          description: Start date (format YYYY-MM-DD)
          example: '2025-09-11'
        end_date:
          type: string
          title: End Date
          description: End date (format YYYY-MM-DD)
          example: '2025-10-11'
        limit:
          type: integer
          title: Limit
          description: Limit per page (max 400)
          default: 400
          example: 400
        need_living:
          type: integer
          title: Need Living
          description: 'Include live rooms currently streaming: 0=exclude, 1=include'
          default: 1
          example: 1
        download:
          type: integer
          title: Download
          description: 'Download: 0=no download, 1=download'
          default: 0
          example: 0
      type: object
      required:
        - cookie
        - start_date
        - end_date
      title: LiveRoomHistoryListRequest
      description: Live Room History List Request Model
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````