# Cambrian x402 Solana Token Transactions

> Cambrian x402 Solana Token Transactions 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-13).

Fetches token transaction history for Solana addresses or tokens via pay-per-use blockchain data API

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/token-transactions
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cambrian-x402-solana-token-transactions-548a3fc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sMGaIDzDMxYbVTNhuYygc

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-transactions-548a3fc4
```

Example prompt: Pull the token transaction history for Solana wallet address 7xKX...abc3 — I want to see all the on-chain token transfers associated with that account.

## When to prefer this

Choose this endpoint when you need pay-per-use, agent-native Solana token transaction data without committing to a subscription. Ideal for autonomous agents that query on-demand and pay micro-fees per call via the x402 protocol. Prefer over free RPC endpoints when structured, parsed transaction records are needed rather than raw blockchain data.

## Known failure modes

- Invalid or malformed Solana address returns an empty array or error
- Missing required query parameters may return a 400 bad request
- Payment failure (insufficient USDC) blocks the request with a 402 response
- Rate limiting or network timeout returns a 5xx error
- Unrecognized token mint address may return no results

## How this service works

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

## Output

Returns an array of token transaction records for the queried Solana address or token, including on-chain transfer details such as sender, receiver, amount, token mint, and transaction signatures.

## 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-transactions-548a3fc4/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)
