# Ethereum Gas Price Tracker (Etherscan V2)

> Ethereum Gas Price Tracker (Etherscan V2) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns real-time Ethereum gas prices across safe, standard, and fast tiers sourced directly from Etherscan V2

## Facts

- Endpoint: GET https://proxy.suverse.io/v1/data/ethereum-gas-tracker
- 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/proxy-suverse-io-efa767cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xoZc0iWeRvH8oelybnOEj

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 proxy-suverse-io-efa767cb
```

Example prompt: What are the current Ethereum gas prices across safe, standard, and fast tiers? I need to decide whether to submit my transaction now or wait for cheaper fees.

## When to prefer this

Use this endpoint when you need real-time, tiered Ethereum gas price data (safe/standard/fast) from a trusted source (Etherscan V2) for transaction timing, cost estimation, or MEV bot decisions. Prefer over generic crypto price APIs when the specific need is gas fee optimization rather than asset price lookup.

## Known failure modes

- Etherscan V2 upstream unavailable — returns 5xx or stale data
- Payment not processed — returns 402 Payment Required if USDC not sent
- Rate limiting if payment fails or quota exceeded
- Network congestion may cause slight lag in gas price updates

## How this service works

Ethereum mainnet gas prices (safe / standard / fast tier) real-time from Etherscan V2. AI agent MEV bot, trading bot, dApp tx-timing API, ETH gas oracle, pay-per-call. Time transactions for cost efficiency.

## Output

Returns current Ethereum gas prices in gwei for three tiers: safe (low-cost, slower), standard (typical), and fast (high priority, faster inclusion), sourced from Etherscan V2 in real time.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-efa767cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
