> ## 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 Bundlers Chart Data

> Gets bundler holding percentage data over time. Returns up to 1000 of the most recent data points



## OpenAPI

````yaml /data-api/openapi.json get /bundlers/chart/{token}
openapi: 3.1.0
info:
  title: Solana Tracker Data API
  description: >-
    The Solana Tracker API gives you powerful, real-time access to the Solana
    ecosystem with comprehensive data endpoints for token data, market metrics,
    price analysis, transactions, wallet tracking, chart visualization, and
    profit analytics.
  version: 1.0.0
  contact:
    email: contact@solanatracker.io
servers:
  - url: https://data.solanatracker.io
    description: Production server
security:
  - apiKey: []
paths:
  /bundlers/chart/{token}:
    get:
      tags:
        - Chart
      summary: Get Bundlers Chart Data
      description: >-
        Gets bundler holding percentage data over time. Returns up to 1000 of
        the most recent data points
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
        - name: type
          in: query
          description: Time interval (e.g., '1s', '1m', '1h', '1d')
          schema:
            type: string
            default: 1d
        - name: time_from
          in: query
          description: Start time (Unix timestamp in seconds)
          schema:
            type: integer
        - name: time_to
          in: query
          description: End time (Unix timestamp in seconds)
          schema:
            type: integer
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BundlersChartResponse'
components:
  schemas:
    BundlersChartResponse:
      type: object
      properties:
        bundlers:
          type: array
          items:
            type: object
            properties:
              percentage:
                type: number
              time:
                type: integer
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````