# ItemListDownloadRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    ItemListDownloadRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: 用户Cookie/User Cookie
          examples:
            - Your_Cookie_Here
        min_cursor:
          type: integer
          title: Min Cursor
          description: 最小游标(开始时间戳,毫秒)/Min cursor (start timestamp in milliseconds)
          examples:
            - 1752336000000
        max_cursor:
          type: integer
          title: Max Cursor
          description: 最大游标(结束时间戳,毫秒)/Max cursor (end timestamp in milliseconds)
          examples:
            - 1760198399000
        type_filters:
          items:
            type: integer
          type: array
          title: Type Filters
          description: >-
            体裁类型过滤/Type filters: 1=1min以内视频, 2=1-3min视频, 3=3-5min视频, 4=5min+视频,
            5=图文, 8=长图文
          default:
            - 1
            - 2
            - 3
            - 4
            - 5
            - 8
          examples:
            - - 2
              - 3
              - 4
              - 5
              - 1
              - 8
        need_long_article:
          type: boolean
          title: Need Long Article
          description: 是否包含长图文/Include long articles
          default: true
          examples:
            - true
      type: object
      required:
        - cookie
        - min_cursor
        - max_cursor
      title: ItemListDownloadRequest
      description: |-
        投稿作品列表导出请求模型
        Item List Download Request Model
      x-apifox-orders:
        - cookie
        - min_cursor
        - max_cursor
        - type_filters
        - need_long_article
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
