# BizIntel Gas Price – Arbitrum

> BizIntel Gas Price – Arbitrum 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 Arbitrum network gas price in both Wei and Gwei units.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/finance/gas-arbitrum
- 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-gas-price-arbitrum-77edbaf8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BX-UTt1ncCRvwCBZIcIrL

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-gas-price-arbitrum-77edbaf8 -d '<json body>'
```

Example prompt: What's the current gas price on Arbitrum right now — give me the value in both Wei and Gwei so I can decide if it's cheap enough to send a transaction?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call lookup of Arbitrum gas prices without setting up an API key or running your own RPC node. Ideal for AI agents performing cost estimation before submitting Layer 2 transactions on Arbitrum, or for comparing gas across chains using BizIntel's suite of finance endpoints.

## Known failure modes

- Arbitrum RPC unavailable — endpoint may return unsupported or low-confidence result
- Stale gas data if the on-chain source is lagging — check data_as_of field
- Incorrect or missing payment (x402 USDC on Base) — request rejected before processing
- Network timeout from downstream Arbitrum node

## How this service works

Fetches live Arbitrum L2 gas price estimations from the mainnet RPC pipeline.

## Output

A JSON object containing the current Arbitrum gas price in Wei (as a string) and in Gwei (as a float), a boolean indicating whether Arbitrum is supported, a confidence rating, the data freshness timestamp, and a disclaimer note.

## 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": "100000000",
   "gasPriceGwei": 0.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-gas-price-arbitrum-77edbaf8/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)
