# Solana Token Holder Distribution Over Time

> Solana Token Holder Distribution Over Time is a paid API for AI agents from x402.cambrian.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns historical holder distribution data for a Solana token, showing how token ownership has changed across time.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/tokens/holder-distribution-over-time
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-token-holder-distribution-over-time-f75c33f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6tUF7jVz-WufGQ1UGy52D

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability solana-token-holder-distribution-over-time-f75c33f1
```

Example prompt: Can you pull the historical holder distribution for the Solana token at address So11111111111111111111111111111111111111112 and show me how ownership has spread or concentrated over the past few months?

## When to prefer this

Use this endpoint when you need on-chain historical holder distribution data specifically for Solana tokens, especially for DeFi research, investment due diligence, or monitoring token decentralization trends over time. Prefer this over general blockchain explorers when you need structured, machine-readable time-series data rather than human-readable dashboards, and when you want a pay-per-use model without a subscription commitment.

## Known failure modes

- Invalid or non-existent Solana token address returns empty array or error
- Token with no historical data returns empty array
- Missing required query parameters results in 400 error
- Payment failure via x402 protocol blocks the response
- Rate limiting if too many requests in quick succession
- Sparse data for very new tokens with limited history

## How this service works

Pay-per-use blockchain and social data for autonomous agents.

## Output

Returns an array of historical snapshots showing how token holder distribution has evolved over time on the Solana blockchain, including counts of holders, ownership concentration metrics, and timestamps for each data point.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-token-holder-distribution-over-time-f75c33f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.org](https://www.zero.xyz/host/x402.cambrian.org/llms.txt)
