> ## 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.

# Wallet Search



## OpenAPI

````yaml openapi.json GET /gateway/v1/search/wallet
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/search/wallet:
    get:
      tags:
        - Search
      summary: Wallet Search
      description: |-
        Searches wallets by ENS name, address label, or address prefix.

        Returns matching wallet addresses with entity labels.
      operationId: search-wallet
      parameters:
        - description: Search keyword like `binance`, `vitalik.eth`, or `0xd8dA...`
          explode: false
          in: query
          name: q
          required: true
          schema:
            description: Search keyword like `binance`, `vitalik.eth`, or `0xd8dA...`
            examples:
              - vitalik.eth
            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: Pagination offset
          explode: false
          in: query
          name: offset
          schema:
            default: 0
            description: Pagination offset
            examples:
              - 0
            format: int64
            minimum: 0
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseWalletSearchItem'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseWalletSearchItem:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseWalletSearchItem.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/WalletSearchItem'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      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
    WalletSearchItem:
      additionalProperties: false
      properties:
        address:
          description: Primary wallet address for this entity
          type: string
        addresses:
          description: >-
            Known wallet addresses for this entity (max 10, use num_addresses
            for the total count)
          items:
            $ref: '#/components/schemas/WalletSearchAddress'
          type:
            - array
            - 'null'
        chain:
          description: Chain of the primary address
          type: string
        entity_name:
          description: Name of the associated entity like `Binance` or `Aave`
          type: string
        entity_type:
          description: Type of entity like `exchange`, `fund`, or `whale`
          type: string
        label:
          description: Human-readable label for the wallet entity
          type: string
        num_addresses:
          description: Total number of wallet addresses associated with this entity
          format: int64
          type: integer
        twitter:
          description: Associated X (Twitter) handle
          type: string
      type: object
    OffsetMeta:
      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
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object
    WalletSearchAddress:
      additionalProperties: false
      properties:
        address:
          description: Wallet address
          type: string
        chain:
          description: Chain name like ethereum, arbitrum_one
          type: string
      required:
        - address
        - chain
      type: object

````