# Vibe Springs Gas Price Lookup

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

Returns current gas prices (fast/standard/slow) and estimated transaction costs for EVM-compatible blockchain networks including Base, Ethereum, Arbitrum, and Optimism

## Facts

- Endpoint: GET https://vibesprings.net/api/gas
- Price: $0.001/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-gas-price-lookup-3d56a458
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BQzpT4sIlOmDNU7xuW-v8

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-gas-price-lookup-3d56a458
```

Example prompt: What are the current gas prices on Base right now — fast, standard, and slow — and is it a good time to make a transaction?

## When to prefer this

Use this endpoint when an AI agent needs real-time gas price data for EVM chains (Base, Ethereum, Arbitrum, Optimism) and wants a structured breakdown by speed tier with USD cost estimates — particularly useful before submitting on-chain transactions or advising users on optimal timing. Prefer over raw RPC calls when you want pre-computed cost estimates and human-readable recommendations in one response.

## Known failure modes

- Invalid chain parameter returns error or falls back to default (Base)
- RPC node unavailable leads to timeout or error response
- Chain not supported returns 400 or similar error
- Payment not included or invalid results in 402 Payment Required

## How this service works

Real-time gas price oracle for multiple EVM chains. Returns slow/standard/fast fee estimates, estimated transaction costs (ETH transfers, ERC-20 transfers, swaps), and network congestion status. Supports Base, Ethereum, Arbitrum, and Optimism.

## Output

Returns a JSON object with gas prices in gwei for fast, standard, and slow tiers; max fee and max priority fee per tier; estimated confirmation times in seconds; estimated USD costs for common transaction types (ETH transfer, ERC-20 transfer, swap); current block number; network status (e.g. quiet/busy); and a human-readable recommendation about whether it's a good time to transact.

## 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",
     "required": [],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Network to query gas prices for. Options: base, ethereum, arbitrum, optimism. Default: base."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "source": "Base RPC",
  "gasPrice": {
   "fast": {
    "gwei": 0.01,
    "maxFee": 0.012,
    "maxPriorityFee": 0.005,
    "estimatedSeconds": 5
   },
   "slow": {
    "gwei": 0.001,
    "maxFee": 0.002,
    "maxPriorityFee": 0.001,
    "estimatedSeconds": 30
   },
   "standard": {
    "gwei": 0.005,
    "maxFee": 0.006,
    "maxPriorityFee": 0.002,
    "estimatedSeconds": 15
   }
  },
  "timestamp": "2026-06-20T12:00:00.000Z",
  "blockNumber": 12345678,
  "networkStatus": "quiet",
  "estimatedCosts": {
   "swap": {
    "fast": "$0.005",
    "slow": "$0.001",
    "standard": "$0.002"
   },
   "ethTransfer": {
    "fast": "$0.0005",
    "slow": "$0.0001",
    "standard": "$0.0002"
   },
   "erc20Transfer": {
    "fast": "$0.001",
    "slow": "$0.0003",
    "standard": "$0.0005"
   }
  },
  "processingTime": "85ms",
  "recommendation": "Network is quiet. Good time to transact."
 }
}
```

## More

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