# Padelmaps Gas Oracle

> Padelmaps Gas Oracle is a paid API for AI agents from padelmaps.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns real-time Ethereum gas prices with EIP-1559 base fee, priority fee tiers, USD cost estimates, and a transaction-timing recommendation

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-crypto/gas-oracle
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/padelmaps-org-6e8e55b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o1jNt-fRcSuVKh-468tH0

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 padelmaps-org-6e8e55b6 -d '<json body>'
```

Example prompt: What are the current gas prices on Ethereum right now — give me the low, medium, high, and instant tiers with USD cost estimates and tell me if it's a good time to send a transaction.

## When to prefer this

Use this endpoint when you need current Ethereum gas price data with EIP-1559 decomposition (base fee + priority fee) and an actionable transaction recommendation, especially when USD cost estimates and confirmation-time tiers are required. Prefer over generic RPC eth_gasPrice calls when you want structured, human-readable tier breakdowns and network congestion guidance in a single call.

## Known failure modes

- Unsupported chain identifier returns an error
- Upstream Etherscan API outage causes stale or missing data
- Malformed request body returns 400 Bad Request
- Payment not received or USDC balance insufficient causes 402 Payment Required

## How this service works

Get real-time gas prices with EIP-1559 data and recommendations

## Output

Returns EIP-1559 base fee (wei and gwei), low/medium/high priority fee suggestions, four gas price tiers (low/medium/high/instant) each with wei, gwei, estimated confirmation time in seconds, ETH cost, and USD cost, plus current ETH/USD price, a network status label (e.g. 'low'), and a recommendation object indicating whether to transact now or wait.

## Example request

```json
{
 "chain": "ethereum"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain (default: ethereum)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "chain": {
         "type": "string"
        },
        "eip1559": {
         "type": "object",
         "description": "Base fee and priority fees in gwei"
        },
        "gas_prices": {
         "type": "object",
         "description": "Gas prices for low/medium/high/instant with gwei, wei, and USD cost"
        },
        "network_status": {
         "type": "object",
         "description": "Congestion level and description"
        },
        "recommendation": {
         "type": "object",
         "description": "Action, reason, and urgency"
        }
       }
      },
      "success": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padelmaps-org-6e8e55b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from padelmaps.org](https://www.zero.xyz/host/padelmaps.org/llms.txt)
