# Cambrian x402 Solana Hourly Price API

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

Returns hourly price data for Solana (SOL) via a pay-per-use x402 micropayment endpoint.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/price-hour
- 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-hourly-price-api-57127b74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OoUWy7s412RUVToMcJl5V

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-hourly-price-api-57127b74
```

Example prompt: What was the hourly price of Solana over the past 24 hours? Use the Cambrian x402 price feed to pull the SOL hourly data.

## When to prefer this

Choose this endpoint when you need pay-per-use, agent-native Solana hourly price data without committing to a subscription. Ideal for autonomous agents that only need price data occasionally and want to pay micropayments per call via x402. Prefer over subscription-based price oracles when cost efficiency at low volume matters.

## Known failure modes

- Payment not included or insufficient USDC (402 Payment Required)
- Invalid or missing query parameters returns empty or error array
- Rate limiting if too many calls made in rapid succession
- Stale or delayed data if upstream blockchain data source is lagging

## How this service works

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

## Output

Returns an array of hourly price records for Solana (SOL), including price values indexed by hour, suitable for time-series analysis, charting, or trading signal generation.

## 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-hourly-price-api-57127b74/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)
