# Cambrian x402 Solana Holder Token Balances

> Cambrian x402 Solana Holder Token Balances 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 token balances held by a specific Solana wallet address or token holder, paid per-call via x402 micropayment.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/holder-token-balances
- 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/cambrian-x402-solana-holder-token-balances-bb4b0f10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_880SF5F-5NRA_dhd9JbUA

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-holder-token-balances-bb4b0f10
```

Example prompt: What token balances does the Solana wallet address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU currently hold? Pull the full list of holdings.

## When to prefer this

Choose this endpoint when you need on-chain Solana token balance data for a specific wallet address and want pay-per-use pricing without a subscription. It is ideal for agents that only occasionally need token holder data, want to avoid API key management overhead, and can pay micropayments via x402. Prefer this over general blockchain explorers when you need structured, machine-readable token balance output directly consumable by an autonomous agent.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error or empty array
- Payment failure via x402 protocol results in 402 response and no data
- Unknown or new wallet address with no token history may return an empty array
- Rate limiting or network congestion may cause timeouts
- Unsupported query parameters may be silently ignored or cause a 400 error

## How this service works

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

## Output

An array of token balance records for the queried Solana wallet, including token mint addresses, amounts, and related holdings data for all tokens held by the address.

## 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-holder-token-balances-bb4b0f10/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)
