# CryptoIntel Gas Prices

> CryptoIntel Gas Prices is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns current gas prices across Ethereum, Base, Polygon, Arbitrum, and Optimism networks

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/gas
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-gas-prices-47a52e58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mNHD7AnNCJZ0bX37JDiD4

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 cryptointel-gas-prices-47a52e58
```

Example prompt: What are the current gas prices across Ethereum, Base, Polygon, Arbitrum, and Optimism right now?

## When to prefer this

Use this endpoint when you need a multi-chain gas price snapshot in a single call rather than querying individual chain RPCs. Ideal for DeFi agents deciding which network to route a transaction on, or for dashboards displaying current network costs across the major EVM L1/L2 ecosystem.

## Known failure modes

- Upstream RPC provider downtime causing stale or missing gas data
- Network-specific outage returning partial results for some chains
- Payment failure (402) if USDC balance is insufficient
- Rate limiting if called too frequently
- Occasional latency spikes if on-chain data providers are congested

## How this service works

Current gas prices across Ethereum, Base, Polygon, Arbitrum, Optimism

## Output

Returns a JSON object containing current gas prices (likely in gwei or equivalent units) for each supported network: Ethereum, Base, Polygon, Arbitrum, and Optimism. Includes an ok status boolean and fee_paid confirmation.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-gas-prices-47a52e58/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
