# Vibe Springs ETH/USD Price Feed Oracle

> Vibe Springs ETH/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-14).

Returns the real-time ETH/USD spot price, 24-hour high/low, and trading volume sourced from Coinbase Exchange

## Facts

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

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-eth-usd-price-feed-oracle-a7577dc4
```

Example prompt: What's the current Ethereum price in USD right now, including the 24-hour high, low, and volume from Coinbase?

## When to prefer this

Choose this endpoint when you need a real-time, pay-per-query ETH/USD price with 24h market stats (high, low, volume) sourced directly from Coinbase Exchange. It is well-suited for AI agents that need fresh Ethereum price data on demand without a subscription, especially in crypto-native or Web3 workflows where micropayments via x402 are natural.

## Known failure modes

- Coinbase Exchange API unavailable — upstream dependency failure
- Rate limiting or payment failure — 402 payment required or insufficient USDC balance
- Network timeout — if Coinbase feed is delayed or unresponsive
- Invalid trading pair request — if the endpoint is miscalled with unsupported parameters

## How this service works

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

## Output

Returns the live ETH/USD spot rate, 24-hour high and low prices, and trading volume as sourced directly from Coinbase Exchange — giving the agent a current snapshot of Ethereum market conditions.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "ETH / USD",
  "type": "crypto_spot",
  "price": 3450.5,
  "low24h": 3410.8,
  "symbol": "ETH",
  "high24h": 3510.2,
  "currency": "USD",
  "exchange": "Coinbase",
  "change24h": 1.15,
  "volume24h": 21542.1,
  "processingTime": "110ms"
 }
}
```

## More

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