# x402.ochinimus.app BTC Spot Price (Pyth)

> x402.ochinimus.app BTC Spot Price (Pyth) 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 Bitcoin spot price sourced from the Pyth Network oracle

## Facts

- Endpoint: GET https://x402.ochinimus.app/api/btc-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-btc-spot-price-pyth-3949311f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WuA3aV9SaxiIFySpL_arh

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-btc-spot-price-pyth-3949311f
```

Example prompt: What's the current Bitcoin spot price right now — pull it from Pyth?

## When to prefer this

Use this endpoint when you need a real-time, oracle-backed BTC spot price (Pyth Network) via a simple GET call with no parameters. Prefer it over exchange REST APIs when you want a decentralized oracle feed rather than a single-exchange mid/last price. Also appropriate for AI agent pipelines that need lightweight, pay-per-call BTC pricing without maintaining exchange API keys.

## Known failure modes

- Pyth oracle feed unavailable or delayed — may return stale or error response
- Network timeout if Pyth data feed is slow
- 402 Payment Required if x402 micropayment not properly attached
- Rate limiting if called too frequently without valid payment

## How this service works

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

## Output

Returns the current BTC spot price in USD as sourced from the Pyth Network decentralized oracle, likely including the price value and possibly confidence interval or timestamp metadata.

## 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-btc-spot-price-pyth-3949311f/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)
