# LiveRoomHistoryListRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    LiveRoomHistoryListRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: 用户Cookie/User Cookie
          examples:
            - Your_Cookie_Here
        start_date:
          type: string
          title: Start Date
          description: 开始日期(格式YYYY-MM-DD)/Start date (format YYYY-MM-DD)
          examples:
            - '2025-09-11'
        end_date:
          type: string
          title: End Date
          description: 结束日期(格式YYYY-MM-DD)/End date (format YYYY-MM-DD)
          examples:
            - '2025-10-11'
        limit:
          type: integer
          title: Limit
          description: 每页数量限制/Limit per page (最多400条)
          default: 400
          examples:
            - 400
        need_living:
          type: integer
          title: Need Living
          description: '是否包含正在直播的场次/Include living rooms: 0=不包含, 1=包含'
          default: 1
          examples:
            - 1
        download:
          type: integer
          title: Download
          description: '是否下载/Download: 0=不下载, 1=下载'
          default: 0
          examples:
            - 0
      type: object
      required:
        - cookie
        - start_date
        - end_date
      title: LiveRoomHistoryListRequest
      description: |-
        直播场次历史记录请求模型
        Live Room History List Request Model
      x-apifox-orders:
        - cookie
        - start_date
        - end_date
        - limit
        - need_living
        - download
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
