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

# Token holders (paginated)

> Wallets currently holding non-zero balance of `{mint}`, sorted by balance descending. Cursor-paginated (default 100, max 200).

Pass `?enrich=identity` to populate the `tags[]` field on each row from `wallet_tags` (e.g. `sniper`, `insider`, `smart_money`, `whale`). Enrichment adds a JOIN; expect ~30% higher cold-path latency.



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/{mint}/holders
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}/holders:
    get:
      tags:
        - Tokens
      summary: Token holders (paginated)
      description: >-
        Wallets currently holding non-zero balance of `{mint}`, sorted by
        balance descending. Cursor-paginated (default 100, max 200).


        Pass `?enrich=identity` to populate the `tags[]` field on each row from
        `wallet_tags` (e.g. `sniper`, `insider`, `smart_money`, `whale`).
        Enrichment adds a JOIN; expect ~30% higher cold-path latency.
      operationId: listTokenHolders
      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: 100
            minimum: 1
            maximum: 200
        - name: enrich
          in: query
          required: false
          schema:
            type: string
            example: identity
          description: >-
            Comma-separated enrichment tokens. Currently only `identity` is
            recognized.
      responses:
        '200':
          description: Page of holders
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HoldersResponse'
components:
  schemas:
    HoldersResponse:
      type: object
      properties:
        mint:
          type: string
        results:
          type: array
          items:
            $ref: '#/components/schemas/HolderRow'
        next_cursor:
          type:
            - string
            - 'null'
          description: >-
            Opaque base64 cursor. Pass back as `?cursor=...`; `null` means
            end-of-results.
        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.

````