# Cambrian x402 Solana OHLCV Pool Data

> Cambrian x402 Solana OHLCV 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).

Returns OHLCV (Open, High, Low, Close, Volume) candlestick data for a specific Solana liquidity pool, pay-per-use via x402.

## Facts

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

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-ohlcv-pool-data-e5b63656
```

Example prompt: Pull the OHLCV candlestick data for the Solana pool at address 58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWaS97zSDjKLU over the last 24 hours with 1-hour intervals so I can analyze the price movement.

## When to prefer this

Choose this endpoint when you need historical or recent OHLCV candlestick data specifically for Solana DEX/AMM liquidity pools, and you want pay-per-use access without a subscription. Ideal for autonomous agents performing on-chain price analysis, backtesting DeFi strategies, or monitoring Solana pool price action in real time.

## Known failure modes

- Invalid or unknown pool address returns empty array or error
- Missing required query parameters (pool address, interval) may return 400-level error
- Payment failure via x402 protocol blocks data access
- Rate limiting if too many requests are made without sufficient payment
- Pool with no trading activity returns empty candle array
- Network latency or Solana RPC issues may cause delays or timeouts

## How this service works

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

## Output

An array of OHLCV candlestick records for the requested Solana pool, each containing open, high, low, close prices and trading volume for each time period. Data is returned in chronological order and reflects on-chain DEX activity.

## 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-ohlcv-pool-data-e5b63656/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)
