# Cambrian x402 Solana Token OHLCV

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

Returns OHLCV (open, high, low, close, volume) candlestick price data for a Solana token, paid per-call via x402 micropayment.

## Facts

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

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-ohlcv-7ccc337e
```

Example prompt: Can you pull the OHLCV candlestick data for the Solana token at mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want to see price and volume history to analyze recent trading activity.

## When to prefer this

Choose this endpoint when you need structured OHLCV candlestick market data specifically for Solana blockchain tokens and want a pay-per-use model (no subscription required). It is ideal for autonomous agents that only need occasional price lookups and want to pay $0.05 USDC per call via the x402 protocol. Prefer this over free DEX APIs when you need reliable, structured candle data for arbitrary Solana token mint addresses including long-tail tokens.

## Known failure modes

- Token mint address not found or not whitelisted — returns empty array or error
- Missing required query parameters (token identifier) — returns 400-level error
- Payment not completed or x402 micropayment rejected — returns 402 Payment Required
- Unsupported timeframe or interval parameter — returns error or empty data
- Rate limit or quota exceeded — returns error response

## How this service works

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

## Output

An array of OHLCV candlestick records for the specified Solana token, each entry typically containing open, high, low, close prices and trading volume along with a timestamp. Data is returned in chronological order suitable for charting or quantitative analysis.

## 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-ohlcv-7ccc337e/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)
