# BizIntel API – Base Network Gas Price

> BizIntel API – Base Network 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 gas price on the Base blockchain network in both Wei and Gwei units

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/finance/gas-base
- 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-base-network-gas-price-83b8719c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BgWfSd65f03stmfyiPOF6

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-base-network-gas-price-83b8719c -d '<json body>'
```

Example prompt: What's the current gas price on the Base network right now, in both Wei and Gwei?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call gas price lookup for the Base L2 network without setting up an API key or managing RPC connections. Ideal for AI agents that occasionally need Base gas prices without committing to a full blockchain node provider subscription. Prefer over raw RPC calls when simplicity and zero-setup matter more than latency.

## Known failure modes

- Network unavailable or Base RPC node unreachable — may return supported: false
- Stale data if gas oracle is temporarily unresponsive — check data_as_of field
- Malformed request body — endpoint expects POST with valid JSON bodyType
- Payment failure via x402/USDC if wallet lacks sufficient funds — call blocked

## How this service works

Fetches live gas price estimations from the official Base Mainnet RPC in wei.

## Output

Returns a JSON object with the current Base network gas price expressed as gasPriceWei (string) and gasPriceGwei (number), along with a supported boolean, a confidence level string (e.g. 'high'), a data_as_of timestamp, warnings array, and a standard informational disclaimer.

## 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": "1000000000",
   "gasPriceGwei": 1
  },
  "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-base-network-gas-price-83b8719c/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)
