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

# List Smart Money wallets

> Returns the paginated Smart Money list projection. Requires `smart-wallets:read`.



## OpenAPI

````yaml /openapi/ghypurr-v1.json get /api/v1/smart-wallets
openapi: 3.1.0
info:
  title: gHypurr Public API
  version: 1.0.0
  description: >-
    Read-only access to gHypurr News, Smart Money, Meme Signals, Published AI
    Signals, and account usage. API keys are created in the authenticated
    gHypurr account interface.
  license:
    name: gHypurr API Terms
    url: https://ghypurr.com/legal/api_terms
servers:
  - url: https://ghypurr.com
    description: Production
security:
  - GhypurrApiKey: []
tags:
  - name: News
    description: Published market-news data.
  - name: Smart Money
    description: Public Smart Money wallet research rows.
  - name: Meme
    description: Published meme-token alerts.
  - name: AI Signals
    description: Already-published, read-only AI signal snapshots.
  - name: Account
    description: API usage for the authenticated account.
paths:
  /api/v1/smart-wallets:
    get:
      tags:
        - Smart Money
      summary: List Smart Money wallets
      description: >-
        Returns the paginated Smart Money list projection. Requires
        `smart-wallets:read`.
      operationId: listSmartWallets
      parameters:
        - $ref: '#/components/parameters/Offset'
        - $ref: '#/components/parameters/Limit'
        - name: q
          in: query
          schema:
            type: string
          description: Search a wallet or public display name.
        - name: lane
          in: query
          schema:
            type: string
            enum:
              - all
              - ready
              - hot
              - tracking
              - makers
              - whale
            default: all
          description: Public list lane. Unsupported values normalize to `all`.
      responses:
        '200':
          description: Smart Money page.
          headers:
            X-RateLimit-Limit:
              $ref: '#/components/headers/RateLimitLimit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/RateLimitRemaining'
            X-Request-ID:
              $ref: '#/components/headers/RequestId'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SmartWalletPage'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/RateLimited'
        '503':
          $ref: '#/components/responses/Unavailable'
components:
  parameters:
    Offset:
      name: offset
      in: query
      schema:
        type: integer
        minimum: 0
        default: 0
      description: Zero-based row offset. Invalid negative values normalize to zero.
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 50
      description: Rows per page. Values are normalized to the range 1-100.
  headers:
    RateLimitLimit:
      description: Account request limit used for this reservation.
      schema:
        type: integer
    RateLimitRemaining:
      description: >-
        Remaining calls in the applicable account quota pool after this
        successful response.
      schema:
        type: integer
    RequestId:
      description: Opaque request identifier for troubleshooting.
      schema:
        type: string
        format: uuid
  schemas:
    SmartWalletPage:
      type: object
      additionalProperties: false
      required:
        - generatedAt
        - degraded
        - lane
        - q
        - total
        - offset
        - limit
        - hasMore
        - counts
        - rows
      properties:
        generatedAt:
          type: string
          format: date-time
        degraded:
          type: boolean
        lane:
          type: string
        q:
          type:
            - string
            - 'null'
        total:
          type: integer
          minimum: 0
        offset:
          type: integer
          minimum: 0
        limit:
          type: integer
          minimum: 1
          maximum: 100
        hasMore:
          type: boolean
        counts:
          $ref: '#/components/schemas/Counts'
        rows:
          type: array
          items:
            $ref: '#/components/schemas/SmartWalletRow'
    Counts:
      type: object
      additionalProperties: false
      required:
        - ready
        - tracking
        - makers
        - cohort
      properties:
        ready:
          type: integer
          minimum: 0
        tracking:
          type: integer
          minimum: 0
        makers:
          type: integer
          minimum: 0
        cohort:
          type: integer
          minimum: 0
    SmartWalletRow:
      type: object
      required:
        - wallet
        - lane
        - gateStatus
        - gateKind
        - gateReason
        - classification
        - closedTrades
        - observedAt
        - equitySpark
        - activeCoins
        - skills
      properties:
        wallet:
          type: string
          description: Public wallet address.
        displayName:
          type:
            - string
            - 'null'
        lane:
          type: string
        gateStatus:
          type: string
        gateKind:
          type: string
        gateReason:
          type: string
        classification:
          type: string
        smartScore:
          type:
            - number
            - 'null'
        hotScore:
          type:
            - number
            - 'null'
        closedTrades:
          type: integer
          minimum: 0
        tradingVolumeUsd:
          type:
            - number
            - 'null'
        pnlUsd:
          type:
            - number
            - 'null'
        winRate:
          type:
            - number
            - 'null'
        riskScore:
          type:
            - number
            - 'null'
        riskLevel:
          type:
            - string
            - 'null'
        timing:
          type:
            - number
            - 'null'
        copyTradeDifficulty:
          type:
            - number
            - 'null'
        coverage:
          description: Public evidence-coverage metadata.
        observedAt:
          type: string
          format: date-time
        equitySpark:
          type: array
          items:
            type: number
        activeCoins:
          type: array
          items:
            type: string
        skills:
          type: array
          items:
            $ref: '#/components/schemas/SmartWalletSkill'
    Error:
      type: object
      additionalProperties: false
      required:
        - error
        - message
      properties:
        error:
          type: string
          example: invalid_api_key
        message:
          type: string
          example: API key is invalid or inactive
    SmartWalletSkill:
      type: object
      additionalProperties: false
      required:
        - key
        - score
      properties:
        key:
          type: string
        score:
          type: number
          minimum: 0
          maximum: 100
  responses:
    Unauthorized:
      description: The Bearer API key is absent, malformed, invalid, expired, or inactive.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The key lacks the required scope or the request IP is not allowed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: The account quota, request rate, or concurrency limit has been reached.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unavailable:
      description: A required API service is temporarily unavailable.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    GhypurrApiKey:
      type: http
      scheme: bearer
      bearerFormat: opaque API key
      description: >-
        Create a scoped key at https://ghypurr.com/account/api-keys. Never place
        a real key in documentation or client-side source.

````