> ## 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-count time series for a token (stub)

> Returns the bundler wallet count for a token over time. **All values are 0 until Phase 5** — the bundler tagger has not shipped yet. The response always includes a `coverage_note` explaining this.

The endpoint is available now so you can wire up your UI and swap in real data when Phase 5 ships without a contract change.

Same sparsity semantics as [GET /holders/chart/{token}](/api-reference/openapi/get/holders/chart/{token}). No pre-launch backfill.



## OpenAPI

````yaml /api-reference/openapi.json get /bundlers/chart/{token}
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:
  /bundlers/chart/{token}:
    get:
      tags:
        - Time-series charts
      summary: Bundler-count time series for a token (stub)
      description: >-
        Returns the bundler wallet count for a token over time. **All values are
        0 until Phase 5** — the bundler tagger has not shipped yet. The response
        always includes a `coverage_note` explaining this.


        The endpoint is available now so you can wire up your UI and swap in
        real data when Phase 5 ships without a contract change.


        Same sparsity semantics as [GET
        /holders/chart/{token}](/api-reference/openapi/get/holders/chart/{token}).
        No pre-launch backfill.
      operationId: getBundlersChart
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
          description: Token mint (base58).
        - name: resolution
          in: query
          required: false
          schema:
            type: string
            enum:
              - 1h
              - 6h
              - 1d
            default: 1h
          description: Bucket size.
        - name: from
          in: query
          required: false
          schema:
            type: integer
            format: int64
          description: 'Start of range (Unix ms, inclusive). Default: 24h before `to`.'
        - name: to
          in: query
          required: false
          schema:
            type: integer
            format: int64
          description: 'End of range (Unix ms, inclusive). Default: now.'
      responses:
        '200':
          description: Bundler-count series (all values 0 until Phase 5)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActorChartSingleResponse'
        '400':
          description: Invalid token mint, unsupported resolution, or `from > to`
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ActorChartSingleResponse:
      type: object
      description: >-
        Response for a single-series actor chart endpoint
        (`/holders/chart/{token}`, `/snipers/chart/{token}`,
        `/insiders/chart/{token}`, `/bundlers/chart/{token}`). Rows exist only
        for hours the mint traded — gaps are expected, not bugs. Forward-fill
        the last value for quiet hours. An empty `results` array carries a
        `coverage_note` explaining the no-backfill policy.
      required:
        - results
        - computed_at
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/ActorChartSinglePoint'
        computed_at:
          type: integer
          format: int64
          description: Unix ms when this response was assembled.
        coverage_note:
          type: string
          description: >-
            Present on empty results (no-backfill policy) or for the bundlers
            endpoint (Phase 5 placeholder).
    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
    ActorChartSinglePoint:
      type: object
      description: >-
        One point in a single-series actor chart. `value` is an integer count
        for holders/snipers/insiders/bundlers.
      required:
        - ts_ms
        - value
      properties:
        ts_ms:
          type: integer
          format: int64
          description: Bucket timestamp, Unix epoch milliseconds.
        value:
          type: number
          description: Point-in-time count for the requested series.
  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.

````