# Cambrian x402 API – Raydium CLMM Pools

> Cambrian x402 API – Raydium CLMM Pools 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 a list of Raydium Concentrated Liquidity Market Maker (CLMM) pools on Solana, returning pool data for autonomous agent use.

## Facts

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

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-pools-7c861faf
```

Example prompt: Pull the current list of Raydium CLMM pools on Solana so I can see which concentrated liquidity pools are available and analyze their data.

## When to prefer this

Choose this endpoint when you need on-demand, pay-per-use access to Raydium CLMM pool data on Solana without managing your own RPC infrastructure. Ideal for autonomous agents that need current pool listings for DeFi strategies, arbitrage bots, yield optimizers, or analytics dashboards, especially when calls are infrequent enough that a $0.05/call model is cost-effective.

## Known failure modes

- Payment not completed — 402 response if USDC payment is not properly attached
- Invalid query parameters — malformed filters may return empty or error responses
- Raydium data unavailable — upstream Solana RPC or Raydium indexer outages may cause failures
- Rate limits or payment issues — insufficient USDC balance halts repeated calls
- Empty result set — if no pools match applied filters

## 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 metadata such as pool identifiers, token pairs, liquidity, and other relevant concentrated liquidity market maker details.

## 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-pools-7c861faf/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)
