# Vibe Springs Base Gas Price Oracle

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

Returns the current Ethereum base network gas price in GWEI, block base fee, and network block details in real time.

## Facts

- Endpoint: GET https://vibesprings.net/api/price/base-gas
- Price: $0.001/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-base-gas-price-oracle-a6c72323
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nYkT-kvxlLN-SpRWmfopl

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-base-gas-price-oracle-a6c72323
```

Example prompt: What's the current Ethereum gas price in GWEI right now, including the base fee and latest block details?

## When to prefer this

Choose this endpoint when an AI agent needs real-time Ethereum gas price data (GWEI) and block base fee for transaction cost estimation, DeFi workflows, or on-chain monitoring, especially when operating in a pay-per-query micropayment (x402) context rather than maintaining a subscription to a full node provider.

## Known failure modes

- Upstream node unavailable: returns 5xx error if the underlying gas price data source is unreachable
- Network congestion or data staleness: may return slightly delayed block data during high chain activity
- Payment failure: returns 402 Payment Required if x402 micropayment of $0.001 USDC is not included

## How this service works

Base network real-time gas price oracle. Returns block base fee, current gas price in GWEI, and network block details.

## Output

Returns the current Ethereum base network gas price in GWEI, the block base fee, and associated network block details such as block number — all reflecting real-time chain state.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "gas_price",
  "symbol": "BASE-GAS",
  "currency": "GWEI",
  "exchange": "Base RPC",
  "timestamp": "2026-06-25T12:00:00.000Z",
  "baseFeeGwei": 0.0012,
  "blockNumber": 15482930,
  "gasPriceGwei": 0.0015,
  "processingTime": "95ms"
 }
}
```

## More

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