# ItemAnalysisItemPerformanceRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    ItemAnalysisItemPerformanceRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: 用户Cookie/User Cookie
          examples:
            - Your_Cookie_Here
        start_date:
          type: string
          title: Start Date
          description: 开始日期(格式YYYYMMDD)/Start date (format YYYYMMDD)
          examples:
            - '20250713'
        end_date:
          type: string
          title: End Date
          description: 结束日期(格式YYYYMMDD)/End date (format YYYYMMDD)
          examples:
            - '20251011'
        genres:
          items:
            type: integer
          type: array
          title: Genres
          description: >-
            体裁类型列表/Genres list: 1=1min以内视频, 2=1-3min视频, 3=3-5min视频, 4=5min+视频,
            5=图文, 8=长图文
          default:
            - 1
            - 2
            - 3
            - 4
            - 5
            - 8
          examples:
            - - 2
              - 3
              - 4
              - 5
              - 8
        primary_verticals:
          items:
            type: string
          type: array
          title: Primary Verticals
          description: 垂类标签列表/Primary verticals list (从involved_vertical接口获取)
          examples:
            - - 动物
        metric_type:
          type: integer
          title: Metric Type
          description: >-
            指标类型/Metric type: 1=播放量(Views), 2=点赞量(Likes), 3=评论量(Comments),
            4=分享量(Shares)
          default: 1
          examples:
            - 1
      type: object
      required:
        - cookie
        - start_date
        - end_date
        - primary_verticals
      title: ItemAnalysisItemPerformanceRequest
      description: |-
        投稿表现请求模型
        Item Analysis Item Performance Request Model
      x-apifox-orders:
        - cookie
        - start_date
        - end_date
        - genres
        - primary_verticals
        - metric_type
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
