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

# Per-tag count of holders for a token

> How many wallets currently holding this token fall in each tag bucket. Drives the 'sniper count', 'whale count' badges on token cards.



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/{mint}/wallet-tag-counts
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}/wallet-tag-counts:
    get:
      tags:
        - Wallet intel
      summary: Per-tag count of holders for a token
      description: >-
        How many wallets currently holding this token fall in each tag bucket.
        Drives the 'sniper count', 'whale count' badges on token cards.
      operationId: getTokenWalletTagCounts
      parameters:
        - name: mint
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Tag counts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WalletTagCounts'
components:
  schemas:
    WalletTagCounts:
      type: object
      description: >-
        Per-tag count of wallets currently holding a given token. Useful for
        surfacing 'sniper-heavy' or 'whale-heavy' tokens.
      properties:
        mint:
          type: string
        counts:
          type: object
          properties:
            sniper:
              type: integer
            insider:
              type: integer
            dev:
              type: integer
            whale:
              type: integer
            smart_money:
              type: integer
            fresh:
              type: integer
            kol:
              type: integer
  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.

````