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

# Bundler wallets for a mint (stub)

> Phase 2 placeholder. Real bundler detection ships in Phase 5 — once the wallet-tagger pipeline backfills the `bundler` tag, this endpoint will return a count and list of bundler wallets. Today it always returns `count: 0` with `status: "tagger_pending"` and `available_in: "phase_5"`.



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/{mint}/bundlers
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}/bundlers:
    get:
      tags:
        - Tokens
      summary: Bundler wallets for a mint (stub)
      description: >-
        Phase 2 placeholder. Real bundler detection ships in Phase 5 — once the
        wallet-tagger pipeline backfills the `bundler` tag, this endpoint will
        return a count and list of bundler wallets. Today it always returns
        `count: 0` with `status: "tagger_pending"` and `available_in:
        "phase_5"`.
      operationId: getTokensBundlers
      parameters:
        - name: mint
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Stub bundler response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BundlersStubResponse'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    BundlersStubResponse:
      type: object
      description: >-
        Phase 2 stub. Real bundler detection ships in Phase 5; this endpoint
        currently always returns `count: 0` and `status: "tagger_pending"`.
      properties:
        mint:
          type: string
        count:
          type: integer
          enum:
            - 0
          description: Always 0 until Phase 5 ships.
        status:
          type: string
          enum:
            - tagger_pending
        available_in:
          type: string
          enum:
            - phase_5
        computed_at:
          type: integer
          format: int64
    ErrorEnvelope:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: INVALID_PARAM
            message:
              type: string
              example: >-
                use pair_address; see /api/v1/pairs?token_address=X to discover
                pools
  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.

````