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

# Combined actor time series (holders, snipers, insiders, dev)

> Returns wide rows with up to four actor series in a single call — **one request instead of four**. Each row has `ts_ms` plus whatever series you requested as keys.

Use `?series=holders,snipers,insiders,dev` (comma-separated) to request a subset. Default: all four. The `dev` series returns as `dev_held_pct` (a 0.0–1.0 fraction of supply held by the deployer).

Same sparsity and freshness semantics as the single-series endpoints: rows exist only for hours the mint traded; forward-fill for display. No pre-launch backfill — history starts at Phase 3 launch (2026-05-28).

Downsampling at `6h`/`1d` returns the **last value in the bucket** for each series.



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/{mint}/actor-chart
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}/actor-chart:
    get:
      tags:
        - Time-series charts
      summary: Combined actor time series (holders, snipers, insiders, dev)
      description: >-
        Returns wide rows with up to four actor series in a single call — **one
        request instead of four**. Each row has `ts_ms` plus whatever series you
        requested as keys.


        Use `?series=holders,snipers,insiders,dev` (comma-separated) to request
        a subset. Default: all four. The `dev` series returns as `dev_held_pct`
        (a 0.0–1.0 fraction of supply held by the deployer).


        Same sparsity and freshness semantics as the single-series endpoints:
        rows exist only for hours the mint traded; forward-fill for display. No
        pre-launch backfill — history starts at Phase 3 launch (2026-05-28).


        Downsampling at `6h`/`1d` returns the **last value in the bucket** for
        each series.
      operationId: getActorChart
      parameters:
        - name: mint
          in: path
          required: true
          schema:
            type: string
          description: Token mint (base58).
        - name: series
          in: query
          required: false
          schema:
            type: string
            default: holders,snipers,insiders,dev
          description: >-
            Comma-separated subset of series to include. Valid values:
            `holders`, `snipers`, `insiders`, `dev`. Default: all four.
        - 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: Combined actor series — wide rows
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActorChartCombinedResponse'
        '400':
          description: >-
            Invalid token mint, unknown series value, 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:
    ActorChartCombinedResponse:
      type: object
      description: >-
        Response for the combined actor-chart endpoint
        (`/tokens/{mint}/actor-chart`). Wide rows — one object per timestamp
        with all requested series as keys. One call replaces up to four
        single-series requests.
      required:
        - results
        - computed_at
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/ActorChartCombinedPoint'
        computed_at:
          type: integer
          format: int64
          description: Unix ms when this response was assembled.
        coverage_note:
          type: string
          description: >-
            Present on empty results — no pre-launch backfill; charts grow
            forward from Phase 3 launch (2026-05-28).
    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
    ActorChartCombinedPoint:
      type: object
      description: >-
        One wide row from the combined actor-chart endpoint. Keys present depend
        on the `?series=` subset requested. `dev_held_pct` is a 0.0–1.0
        fraction.
      required:
        - ts_ms
      properties:
        ts_ms:
          type: integer
          format: int64
          description: Bucket timestamp, Unix epoch milliseconds.
        holders:
          type: integer
          format: int64
          description: >-
            Distinct holder count at this timestamp. Present when `holders` is
            in the requested series.
        snipers:
          type: integer
          format: int32
          description: >-
            Sniper wallet count. Present when `snipers` is in the requested
            series.
        insiders:
          type: integer
          format: int32
          description: >-
            Insider wallet count. Present when `insiders` is in the requested
            series.
        dev_held_pct:
          type: number
          format: float
          description: >-
            Developer's share of supply (0.0–1.0 fraction). Present when `dev`
            is in 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.

````