# Cambrian x402 API – Raydium CLMM Pool Data

> Cambrian x402 API – Raydium CLMM Pool Data 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).

Fetches concentrated liquidity market maker (CLMM) pool data from the Raydium DEX on Solana via pay-per-use x402 micropayment.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/raydium-clmm/pool
- 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-api-raydium-clmm-pool-data-cd60da83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tDnQ4pkk9sojpcanINFa6

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-api-raydium-clmm-pool-data-cd60da83
```

Example prompt: Pull the Raydium CLMM pool data from Cambrian's Solana endpoint so I can see the current concentrated liquidity pools — use any relevant query params to filter by the SOL/USDC pair.

## When to prefer this

Choose this endpoint when you need on-chain Raydium CLMM (concentrated liquidity) pool data on Solana and want a pay-per-use model via x402 micropayments without API key subscriptions. Ideal for autonomous agents that need fresh DEX pool data on demand at low per-call cost ($0.05 USDC). Prefer over general Solana RPC calls when you want pre-processed, structured pool data rather than raw on-chain bytes.

## Known failure modes

- Payment not fulfilled via x402 protocol — endpoint returns HTTP 402 requiring USDC micropayment
- Invalid or unsupported query parameters — may return empty array or error
- Pool not found for given filters — returns empty array
- Solana RPC or upstream Raydium data unavailable — service error response
- Rate limiting or network timeout if upstream data source is congested

## How this service works

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

## Output

Returns an array of Raydium CLMM pool objects on Solana, each containing pool-level data such as token pairs, liquidity, tick ranges, fees, and other concentrated liquidity market maker attributes relevant to the queried pool(s).

## 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-api-raydium-clmm-pool-data-cd60da83/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)
