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

# Holder-count time series for a token

> Returns the distinct holder count for a token sampled once per hour (or per 6h/1d bucket). Data is event-driven — a row exists only for hours the mint traded. Quiet hours produce gaps, not zeros; frontends should forward-fill the last value.

No pre-launch backfill: history starts at Phase 3 launch (2026-05-28) and grows forward. Empty mints return `results: []` with a `coverage_note`.

Downsampling at `6h`/`1d` returns the **last value in the bucket** (point-in-time count, not a flow).

Data freshness is ~3–5 seconds after a trade.



## OpenAPI

````yaml /api-reference/openapi.json get /holders/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:
  /holders/chart/{token}:
    get:
      tags:
        - Time-series charts
      summary: Holder-count time series for a token
      description: >-
        Returns the distinct holder count for a token sampled once per hour (or
        per 6h/1d bucket). Data is event-driven — a row exists only for hours
        the mint traded. Quiet hours produce gaps, not zeros; frontends should
        forward-fill the last value.


        No pre-launch backfill: history starts at Phase 3 launch (2026-05-28)
        and grows forward. Empty mints return `results: []` with a
        `coverage_note`.


        Downsampling at `6h`/`1d` returns the **last value in the bucket**
        (point-in-time count, not a flow).


        Data freshness is ~3–5 seconds after a trade.
      operationId: getHoldersChart
      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. `6h`/`1d` downsample to last-value-in-bucket.
        - 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: Holder-count series
          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.

````