# x402.ochinimus.app SOL Spot Price

> x402.ochinimus.app SOL Spot Price is a paid API for AI agents from x402.ochinimus.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current SOL (Solana) spot price via the Pyth oracle network

## Facts

- Endpoint: GET https://x402.ochinimus.app/api/sol-price
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ochinimus-app-sol-spot-price-31ed1ab4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sZAns44iK2J4zcMQJOjR-

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 x402-ochinimus-app-sol-spot-price-31ed1ab4
```

Example prompt: What's the current spot price of SOL right now, using the Pyth oracle feed?

## When to prefer this

Use this endpoint when you need a real-time, oracle-sourced SOL price (backed by Pyth) with micropayment-per-call pricing via x402; ideal for DeFi agents, trading bots, or portfolio trackers that need trustworthy on-chain-grade price data rather than a centralized exchange ticker.

## Known failure modes

- Pyth oracle feed unavailable or delayed — may return stale or missing price data
- Payment failure (x402) — if USDC payment of $0.001 is not processed correctly, request is rejected
- Network timeout — if the endpoint is temporarily unreachable
- Invalid request format — non-GET methods or malformed query params return an error

## How this service works

SOL spot price (multi-source: Coinbase, Kraken, Pyth Hermes fallback)

## Output

The current SOL/USD spot price as reported by the Pyth oracle network, returned as a numeric price value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ochinimus-app-sol-spot-price-31ed1ab4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ochinimus.app](https://www.zero.xyz/host/x402.ochinimus.app/llms.txt)
