# Cambrian x402 Solana Price-Volume API

> Cambrian x402 Solana Price-Volume API 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).

Fetches pay-per-use Solana token price and trading volume data for autonomous agents via x402 micropayments.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/price-volume
- 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-price-volume-api-f5079d8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s3S1dXvxujDziDKq0LmBS

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-price-volume-api-f5079d8d
```

Example prompt: What's the current price and trading volume for the JUP token on Solana?

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-use Solana token price and volume data without committing to a subscription. It is ideal for autonomous AI agents that make infrequent or on-demand queries and want to pay only per call via x402 micropayments. Prefer this over centralized exchange APIs when you need on-chain or DEX-sourced Solana data with no API key setup required.

## Known failure modes

- Payment not completed — returns HTTP 402 if x402 micropayment is not provided or fails
- Invalid query parameters — returns error if unrecognized token identifier or malformed query params are supplied
- Token not found — returns empty array or error if the requested Solana token has no data
- Rate limiting — may throttle excessive requests from a single agent
- Network/RPC errors — upstream Solana node or data provider may be temporarily unavailable

## How this service works

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

## Output

Returns an array of price-volume data records for the queried Solana token(s), including price and trading volume metrics as JSON array entries.

## 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-price-volume-api-f5079d8d/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)
