# GeneralSearchV2Request

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    GeneralSearchV2Request:
      properties:
        keyword:
          type: string
          title: Keyword
          description: 关键词 / Keyword
          default: 猫咪
        cursor:
          type: integer
          title: Cursor
          description: >-
            偏移游标，用于翻页，从上一次请求返回的响应中获取 / Offset cursor for pagination, obtained
            from the last response
          default: 0
        sort_type:
          type: string
          title: Sort Type
          description: >-
            排序方式：0=综合排序 1=最多点赞 2=最新发布 / Sort type: 0=Comprehensive, 1=Most
            Likes, 2=Latest
          default: '0'
        publish_time:
          type: string
          title: Publish Time
          description: >-
            发布时间筛选：0=不限 1=最近一天 7=最近一周 180=最近半年 / Publish time filter:
            0=Unlimited, 1=Last day, 7=Last week, 180=Last half year
          default: '0'
        filter_duration:
          type: string
          title: Filter Duration
          description: >-
            视频时长过滤：0=不限 0-1=一分钟以内 1-5=一到五分钟 5-10000=五分钟以上 / Video duration
            filter: 0=Unlimited, 0-1=Within 1 minute, 1-5=1 to 5 minutes,
            5-10000=More than 5 minutes
          default: '0'
        content_type:
          type: string
          title: Content Type
          description: >-
            内容类型：0=不限 1=视频 2=图片 3=文章 / Content type: 0=All, 1=Video, 2=Picture,
            3=Article
          default: '0'
        search_id:
          type: string
          title: Search Id
          description: >-
            搜索ID，用于翻页，从上一次请求返回的响应中获取 / Search ID for pagination, obtained from
            the last response
          default: ''
        backtrace:
          type: string
          title: Backtrace
          description: >-
            翻页回溯标识，用于翻页，从上一次请求返回的响应中获取 / Backtrace for pagination, obtained from
            the last response
          default: ''
      type: object
      title: GeneralSearchV2Request
      x-apifox-orders:
        - keyword
        - cursor
        - sort_type
        - publish_time
        - filter_duration
        - content_type
        - search_id
        - backtrace
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
