# EruditePay Gas Price Intelligence

> EruditePay Gas Price Intelligence is a paid API for AI agents from bridge.eruditepay.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current gas prices for a specified blockchain network and token

## Facts

- Endpoint: POST https://bridge.eruditepay.com/api/v1/gas/prices
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bridge-eruditepay-com-23259cd4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uzgSNVi8fNGJkhBAec_P3

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 bridge-eruditepay-com-23259cd4 -d '<json body>'
```

Example prompt: What are the current gas prices on the Base network for USDC? I want to know if now is a good time to send a transaction.

## When to prefer this

Use this endpoint when you need real-time gas price data for a specific blockchain (Base, Ethereum, Tron) and optionally a specific token, and are operating in an x402 micropayment-capable environment willing to pay $0.01 USDC per call.

## Known failure modes

- Unsupported chain name returns error or empty data
- Invalid or unrecognized token address/symbol returns error
- Network connectivity issues return 5xx errors
- Payment failure (x402) if USDC not provided or insufficient balance
- Rate limiting if too many requests in short period

## How this service works

Crypto data intelligence

## Output

Returns current gas price data for the specified blockchain network and token, including fee estimates useful for transaction planning.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "Blockchain network (e.g. base, ethereum, tron)"
  },
  "token": {
   "type": "string",
   "description": "Token address or symbol"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bridge-eruditepay-com-23259cd4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bridge.eruditepay.com](https://www.zero.xyz/host/bridge.eruditepay.com/llms.txt)
