# BizIntel API – Ethereum Gas Price

> BizIntel API – Ethereum Gas Price is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current Ethereum network gas price in both Wei and Gwei units

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/finance/gas-ethereum
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-ethereum-gas-price-99415f87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0WY-entyd2IttYdc56Vpv

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 bizintel-api-ethereum-gas-price-99415f87 -d '<json body>'
```

Example prompt: What's the current Ethereum gas price right now? Give me the value in both Wei and Gwei so I can estimate my transaction costs.

## When to prefer this

Choose this endpoint when an AI agent needs a quick, pay-per-call Ethereum gas price lookup without API key setup, especially in automated workflows using x402 USDC micropayments on Base. Prefer over free alternatives when you need a structured JSON response with confidence scoring and no rate-limit concerns tied to a subscription plan.

## Known failure modes

- Ethereum node or data source unavailable — endpoint returns supported:false or empty result
- Stale data if upstream provider has not refreshed — data_as_of timestamp may lag real-time
- Network timeout on Cloudflare Worker — HTTP 5xx response
- Payment failure via x402 protocol — 402 Payment Required if USDC payment is not accepted

## How this service works

Fetches current Ethereum Mainnet gas price from the public DoH RPC pipeline.

## Output

A JSON object containing the current Ethereum gas price in Wei (e.g. 35000000000) and Gwei (e.g. 35), a confidence rating (e.g. 'high'), a data freshness timestamp, a 'supported' boolean, and any warnings or disclaimers. No authentication required; paid via x402 USDC on Base at $0.001 per call.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "gasPriceWei": "35000000000",
   "gasPriceGwei": 35
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-ethereum-gas-price-99415f87/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
