# Base Pulse — Base Gas Tips

> Base Pulse — Base Gas Tips is a paid API for AI agents from base-pulse.annushka1190.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns live Base network gas price suggestions (slow/normal/fast) in Gwei, with a current gas price, to help agents time and price on-chain transactions.

## Facts

- Endpoint: GET https://base-pulse.annushka1190.workers.dev/v1/gas/base
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-pulse-base-gas-tips-ef2bd225
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RG1ZHqD9Dlx-uT1CwdxKS

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 base-pulse-base-gas-tips-ef2bd225
```

Example prompt: What's the current gas price on the Base network — give me slow, normal, and fast suggestions so I know how to price my next on-chain transaction?

## When to prefer this

Choose this endpoint when an agent needs live, tiered gas price suggestions specifically for the Base L2 network before submitting or pricing an on-chain transaction. It is preferable to generic Ethereum gas oracles when operating exclusively on Base, and requires no API key — only a $0.003 USDC x402 micropayment. Best suited for real-time pre-transaction checks, not historical gas analytics.

## Known failure modes

- Network identifier not recognized — returns error if an unsupported network string is passed
- Upstream RPC unavailability — may return stale or error response if Base RPC is unreachable
- Payment failure via x402 — call not executed if USDC payment of $0.003 cannot be confirmed
- Rate limiting on the Cloudflare Worker — transient 429 if traffic spikes

## How this service works

Live Base gasPrice from public RPC plus slow/normal/fast gwei suggestions. Call before the agent submits a transaction to estimate cost and timing.

## Output

A JSON object containing the current Base network gas price in Gwei (gasPriceGwei) and three priority-tier gas tip suggestions — slow, normal, and fast — each expressed in Gwei, plus the network identifier string.

## 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": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "network": "base",
  "suggestions": {
   "fast": 0.03,
   "slow": 0.01,
   "normal": 0.02
  },
  "gasPriceGwei": 0.02
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-pulse-base-gas-tips-ef2bd225/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from base-pulse.annushka1190.workers.dev](https://www.zero.xyz/host/base-pulse.annushka1190.workers.dev/llms.txt)
