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

# Smart-money wallets holding this mint

> Wallets globally tagged `smart_money` (high historical PnL across many mints) who currently hold non-zero balance of `{mint}`.

**Tier-gated**: Free tier is capped at 100 results per UTC day per endpoint. Paid tiers bypass the cap.

Cursor-paginated (default 50, max 200).



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/{mint}/smart-money
openapi: 3.1.0
info:
  title: Dexploit API
  version: 1.0.0
  description: Real-time and historical Solana DEX swap and OHLCV data.
servers:
  - url: https://api.dexploit.dev
    description: Production
security:
  - ApiKeyHeader: []
  - BearerAuth: []
  - ApiKeyQuery: []
paths:
  /tokens/{mint}/smart-money:
    get:
      tags:
        - Tokens
      summary: Smart-money wallets holding this mint
      description: >-
        Wallets globally tagged `smart_money` (high historical PnL across many
        mints) who currently hold non-zero balance of `{mint}`.


        **Tier-gated**: Free tier is capped at 100 results per UTC day per
        endpoint. Paid tiers bypass the cap.


        Cursor-paginated (default 50, max 200).
      operationId: listTokenSmartMoney
      parameters:
        - name: mint
          in: path
          required: true
          schema:
            type: string
        - name: cursor
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            minimum: 1
            maximum: 200
        - name: enrich
          in: query
          required: false
          schema:
            type: string
            example: identity
      responses:
        '200':
          description: Smart-money holders
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActorsResponse'
        '429':
          description: Daily cap exceeded (Free tier only).
components:
  schemas:
    ActorsResponse:
      type: object
      properties:
        mint:
          type: string
        results:
          type: array
          items:
            $ref: '#/components/schemas/HolderRow'
        next_cursor:
          type:
            - string
            - 'null'
        computed_at:
          type: integer
    HolderRow:
      type: object
      properties:
        wallet:
          type: string
        balance_atomic:
          type: string
          description: u64 as decimal string for JSON safety.
        balance_ui:
          type: number
          description: balance_atomic / 10^decimals.
        pct_of_circulating:
          type: number
          description: 0.0–1.0.
        tags:
          type: array
          items:
            type: string
          description: Empty unless `?enrich=identity` is requested.
        rank:
          type: integer
          description: 1-based position in this page (resumed across pages by cursor).
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Preferred for swaps-api endpoints (`/swaps/*`, `/stats/*`, `/trending`,
        `/pool-events`).
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Required by the OHLCV endpoints (`/api/v1/*`) and accepted by every
        other endpoint. Send `Authorization: Bearer ohlcv_live_sk_<your_key>`.
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
      description: >-
        Browser-friendly alternative to the Bearer header — accepted by every
        endpoint and required for WebSocket from the browser.

````