# Vibe Springs SOL/USD Price Feed Oracle

> Vibe Springs SOL/USD Price Feed 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-15).

Returns the live Solana (SOL) spot price in USD along with 24-hour high/low and trading volume from Coinbase Exchange

## Facts

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

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-sol-usd-price-feed-oracle-f7790287
```

Example prompt: What's the current live price of Solana in USD, including today's 24-hour high, low, and trading volume?

## When to prefer this

Use this endpoint when you need a real-time, reliable SOL/USD price with 24h market context (high/low/volume) sourced directly from Coinbase Exchange. Prefer this over generic crypto APIs when you need Coinbase-sourced pricing for DeFi pricing logic, portfolio valuation, or trading decision support.

## Known failure modes

- Coinbase Exchange data feed unavailable — upstream timeout or connectivity error
- Invalid endpoint path returns 404
- Payment failure or insufficient USDC balance returns 402
- Rate limiting if too many concurrent requests

## How this service works

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

## Output

Returns the real-time SOL/USD spot rate sourced from Coinbase Exchange, including the 24-hour high price, 24-hour low price, and total trading volume for the period.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "SOL / USD",
  "type": "crypto_spot",
  "price": 138.45,
  "low24h": 135.2,
  "symbol": "SOL",
  "high24h": 142.1,
  "currency": "USD",
  "exchange": "Coinbase",
  "change24h": -1.25,
  "volume24h": 98520.4,
  "processingTime": "135ms"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-sol-usd-price-feed-oracle-f7790287/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)
