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

# Get Token Bundlers

> Retrieves bundler information for a specific token, including top 500 bundler wallets and statistics



## OpenAPI

````yaml /data-api/openapi.json get /tokens/{token}/bundlers
openapi: 3.1.0
info:
  title: Solana Tracker Data API
  description: >-
    Solana Tracker Data API for token prices, holders, trades, charts, wallet
    data, risk signals, and market analytics.
  version: 1.0.0
  contact:
    email: contact@solanatracker.io
servers:
  - url: https://data.solanatracker.io
    description: Production server
security:
  - apiKey: []
paths:
  /tokens/{token}/bundlers:
    get:
      tags:
        - Tokens
      summary: Get Token Bundlers
      description: >-
        Retrieves bundler information for a specific token, including top 500
        bundler wallets and statistics
      parameters:
        - name: token
          in: path
          required: true
          description: Solana token mint address
          schema:
            type: string
            pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$
          example: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BundlersResponse'
              example:
                total: 140
                balance: 32457164.112205
                percentage: 3.24567802152891
                initialBalance: 0
                initialPercentage: 0
                wallets:
                  - wallet: 4LV1AGBhB4or8r8dtpuoucttxpdo9UcKyHkSDEdjnC3d
                    initialBalance: 0
                    initialPercentage: 0
                    balance: 16731822.881449
                    percentage: 1.6731825365707074
                    bundleTime: 1768443057571
        '400':
          description: Bad Request - Invalid token address format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Token not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    BundlersResponse:
      type: object
      properties:
        total:
          type: integer
          description: Total number of bundler wallets
        balance:
          type: number
          description: Total balance of all bundler wallets
        percentage:
          type: number
          description: Percentage of total supply held by bundlers
        initialBalance:
          type: number
          description: Initial balance of bundlers
        initialPercentage:
          type: number
          description: Initial percentage held by bundlers
        wallets:
          type: array
          description: Array of bundler wallet information (up to 500 wallets)
          items:
            $ref: '#/components/schemas/BundlerWallet'
      required:
        - total
        - balance
        - percentage
        - initialBalance
        - initialPercentage
        - wallets
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
      required:
        - error
    BundlerWallet:
      type: object
      properties:
        wallet:
          type: string
          description: Bundler wallet address
        initialBalance:
          type: number
          description: Initial token balance of the bundler
        initialPercentage:
          type: number
          description: Initial percentage of total supply held by the bundler
        balance:
          type: number
          description: Current token balance of the bundler
        percentage:
          type: number
          description: Current percentage of total supply held by the bundler
        bundleTime:
          type: integer
          description: >-
            Timestamp when the bundle was created (Unix timestamp in
            milliseconds)
      required:
        - wallet
        - initialBalance
        - initialPercentage
        - balance
        - percentage
        - bundleTime
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````