> ## Documentation Index
> Fetch the complete documentation index at: https://docs.asksurf.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Social User Search



## OpenAPI

````yaml openapi.json GET /gateway/v1/search/social/people
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/search/social/people:
    get:
      tags:
        - Search
      summary: Social User Search
      description: |-
        Searches X (Twitter) users by keyword.

        **Included fields:** handle, display name, bio, follower count, avatar.
      operationId: search-social-people
      parameters:
        - description: >-
            Search keyword or `@handle` for exact handle lookup. Use a keyword
            like `vitalik` for fuzzy matching across names and bios, or
            `@VitalikButerin` to find a specific account by handle
          explode: false
          in: query
          name: q
          required: true
          schema:
            description: >-
              Search keyword or `@handle` for exact handle lookup. Use a keyword
              like `vitalik` for fuzzy matching across names and bios, or
              `@VitalikButerin` to find a specific account by handle
            examples:
              - vitalik
            type: string
        - description: Results per page
          explode: false
          in: query
          name: limit
          schema:
            default: 20
            description: Results per page
            examples:
              - 20
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: >-
            Opaque cursor token from a previous response's next_cursor field for
            fetching the next page
          explode: false
          in: query
          name: cursor
          schema:
            description: >-
              Opaque cursor token from a previous response's next_cursor field
              for fetching the next page
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CursorDataResponseXUser'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    CursorDataResponseXUser:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/CursorDataResponseXUser.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/XUser'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/CursorMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    XUser:
      additionalProperties: false
      properties:
        avatar:
          description: Profile picture URL
          type: string
        bio:
          description: Profile biography text
          type: string
        followers_count:
          description: Number of followers
          format: int64
          type: integer
        following_count:
          description: Number of accounts this user follows
          format: int64
          type: integer
        handle:
          description: X/Twitter handle without the @ prefix
          type: string
        name:
          description: Display name on X/Twitter
          type: string
        user_id:
          description: Numeric X/Twitter user ID as a string
          type: string
      required:
        - user_id
        - handle
        - name
        - followers_count
        - following_count
      type: object
    CursorMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        has_more:
          description: Whether more items exist beyond the current page.
          type: boolean
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        next_cursor:
          description: >-
            Opaque cursor token for fetching the next page. Empty when no more
            pages exist.
          type: string
      required:
        - has_more
        - limit
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object

````