# ItemListRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    ItemListRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: 用户Cookie/User Cookie
          examples:
            - Your_Cookie_Here
        count:
          type: integer
          title: Count
          description: 每页数量/Count per page (最多100条)
          default: 10
          examples:
            - 10
        order_by:
          type: integer
          title: Order By
          description: >-
            排序方式/Order by (1-26): 1=发布时间↓(新到旧), 2=发布时间↑(旧到新), 3=播放量↓, 4=播放量↑,
            5=点赞量↓, 6=点赞量↑, 7=评论量↓, 8=评论量↑, 9=分享量↓, 10=分享量↑, 11=收藏量↓, 12=收藏量↑,
            13=2s跳出率↓, 14=2s跳出率↑, 15=5s完播率↓, 16=5s完播率↑, 17=完播率↓, 18=完播率↑,
            19=封面点击率↓, 20=封面点击率↑, 21=平均播放时长↓, 22=平均播放时长↑, 23=主页访问量↓, 24=主页访问量↑,
            25=粉丝增量↓, 26=粉丝增量↑
          default: 1
          examples:
            - 1
        fields:
          type: string
          title: Fields
          description: 需要返回的字段/Fields to return
          default: metrics,review,visibility
          examples:
            - metrics,review,visibility
        need_cooperation:
          type: boolean
          title: Need Cooperation
          description: 是否需要合作信息/Need cooperation info
          default: true
          examples:
            - true
        start_time:
          type: integer
          title: Start Time
          description: 开始时间戳(毫秒)/Start time timestamp (milliseconds)
          examples:
            - 1758988800000
        end_time:
          type: integer
          title: End Time
          description: 结束时间戳(毫秒)/End time timestamp (milliseconds)
          examples:
            - 1760198399000
        need_long_article:
          type: boolean
          title: Need Long Article
          description: 是否包含长图文/Include long articles
          default: true
          examples:
            - true
        cursor:
          anyOf:
            - type: integer
            - type: 'null'
          title: Cursor
          description: 分页游标/Pagination cursor (可选)
      type: object
      required:
        - cookie
        - start_time
        - end_time
      title: ItemListRequest
      description: |-
        投稿作品列表请求模型
        Item List Request Model
      x-apifox-orders:
        - cookie
        - count
        - order_by
        - fields
        - need_cooperation
        - start_time
        - end_time
        - need_long_article
        - cursor
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
