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

# Insiders holding this mint

> Wallets tagged `insider` for this specific mint who currently hold non-zero balance. An insider is a wallet that received tokens but has never appeared as a swapper on-DEX (e.g. via airdrop or bonding-curve purchase outside of `pump_swaps`).

Cursor-paginated (default 50, max 200).



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/{mint}/insiders
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}/insiders:
    get:
      tags:
        - Tokens
      summary: Insiders holding this mint
      description: >-
        Wallets tagged `insider` for this specific mint who currently hold
        non-zero balance. An insider is a wallet that received tokens but has
        never appeared as a swapper on-DEX (e.g. via airdrop or bonding-curve
        purchase outside of `pump_swaps`).


        Cursor-paginated (default 50, max 200).
      operationId: listTokenInsiders
      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: Insiders
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActorsResponse'
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.

````