# AI Rook Gas Tracker

> AI Rook Gas Tracker is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns current Ethereum/Base network gas prices and fee estimates for on-chain transactions

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/gas-tracker
- 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/ai-rook-gas-tracker-6d8e342e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N3i5FsFlyE65arHfWFbKX

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 ai-rook-gas-tracker-6d8e342e
```

Example prompt: What are the current gas prices on Base mainnet right now — give me the base fee and priority fee so I can decide whether to submit my transaction.

## When to prefer this

Choose this endpoint when an agent needs real-time gas price data on Base mainnet before executing or timing an on-chain transaction, especially within an agentic workflow already using x402 micropayments and USDC on Base. Useful as a pre-flight check before any DeFi action or smart contract call.

## Known failure modes

- Network RPC unavailable — upstream node unreachable, returns 5xx error
- Payment insufficient — $0.002 USDC x402 payment not included or rejected
- Rate limiting — too many requests from same wallet
- Stale data — gas data may lag a few seconds during network congestion

## How this service works

Current Base mainnet gas prices. Slow, standard, fast in gwei.

## Output

Returns current gas price metrics including base fee, priority fee (tip), and estimated gas costs for transactions on the Base (or Ethereum) network, helping agents decide optimal timing for on-chain actions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "network": "base",
  "fast_gwei": "0.02",
  "slow_gwei": "0.02",
  "elapsed_ms": 120,
  "gas_price_wei": "15000000",
  "standard_gwei": "0.02",
  "gas_price_gwei": "0.02"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-rook-gas-tracker-6d8e342e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.ai-rook.com](https://www.zero.xyz/host/agents.ai-rook.com/llms.txt)
