# Vibe Springs BTC/USD Real-Time Price Oracle

> Vibe Springs BTC/USD Real-Time Price Oracle is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns the live BTC/USD spot rate along with 24-hour high, low, and trading volume sourced directly from Coinbase Exchange.

## Facts

- Endpoint: GET https://vibesprings.net/api/price/btc-usd
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-springs-btc-usd-real-time-price-oracle-f58b8d48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JbtB_85DyXBp_0KzypKdv

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 vibe-springs-btc-usd-real-time-price-oracle-f58b8d48
```

Example prompt: What's the current Bitcoin price in USD right now, including today's high, low, and trading volume?

## When to prefer this

Use this endpoint when you need a real-time, Coinbase-sourced BTC/USD spot price with 24h market stats (high, low, volume) rather than a historical price, an aggregated multi-exchange price, or prices for other crypto pairs. Ideal for agents that need fresh market data for payment calculations, trade triggers, or display to users.

## Known failure modes

- Coinbase Exchange API unavailable — upstream data source unreachable, returns error
- Payment not included or insufficient — x402 payment required error returned
- Rate limit exceeded — too many requests in a short window
- Network timeout — real-time feed temporarily unresponsive

## How this service works

Real-time BTC/USD price feed oracle. Retrieves live spot rate, 24h high/low, and volume directly from Coinbase Exchange.

## Output

Returns the live BTC/USD spot price, the 24-hour high and low prices, and the 24-hour trading volume, all sourced in real time from Coinbase Exchange.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "BTC / USD",
  "type": "crypto_spot",
  "price": 64661.88,
  "low24h": 64491.88,
  "symbol": "BTC",
  "high24h": 66774.05,
  "currency": "USD",
  "exchange": "Coinbase",
  "change24h": -2.68,
  "volume24h": 6332.98,
  "processingTime": "120ms"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-btc-usd-real-time-price-oracle-f58b8d48/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
