# UserSearchRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    UserSearchRequest:
      properties:
        keyword:
          type: string
          title: Keyword
          description: 搜索关键词,支持抖音号/ID/昵称/Search keyword (Douyin ID / nickname)
          examples:
            - 啵
        count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Count
          description: 每页数量/Number of results per page
          default: 20
          examples:
            - 20
        cursor:
          anyOf:
            - type: integer
            - type: 'null'
          title: Cursor
          description: >-
            翻页游标,首页传 0,后续传上一页响应里的 cursor/Pagination cursor, 0 for first page,
            then pass the cursor from the previous response
          default: 0
          examples:
            - 0
      type: object
      required:
        - keyword
      title: UserSearchRequest
      description: |-
        DOU+ 用户搜索请求模型
        DOU+ User Search Request Model
      x-apifox-orders:
        - keyword
        - count
        - cursor
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
