# Cambrian x402 Solana Token Holders

> Cambrian x402 Solana Token Holders 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-15).

Returns the list of holders for a specified Solana token, including wallet addresses and balances.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/tokens/holders
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cambrian-x402-solana-token-holders-5dd1b600
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mSc9xVkHPF9DjxDEBEVBZ

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 cambrian-x402-solana-token-holders-5dd1b600
```

Example prompt: Who are the top holders of the Solana token at address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v right now?

## When to prefer this

Use this endpoint when you need on-chain Solana token holder data in a pay-per-use model without committing to a subscription. Prefer it over general blockchain explorers when integrating into autonomous agent workflows that need programmatic access to holder lists for analytics, airdrops, or whale monitoring.

## Known failure modes

- Invalid or malformed token address returns an error or empty array
- Token not found on Solana returns no results
- Missing required query parameters returns a 400-level error
- Payment not provided or insufficient triggers a 402 Payment Required response
- Rate limits or network issues may cause timeouts

## How this service works

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

## Output

An array of token holder records for the specified Solana token, typically including wallet addresses and their respective token balances or holdings.

## 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/cambrian-x402-solana-token-holders-5dd1b600/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)
