# Gaspost — Base Network Gas Conditions

> Gaspost — Base Network Gas Conditions is a paid API for AI agents from oraclepost.higgsfield.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-19).

Returns live gas conditions on the Base blockchain including gas price, base fee, suggested priority fee, latest block number, and block timestamp — read directly from a public node with no caching.

## Facts

- Endpoint: GET https://oraclepost.higgsfield.app/api/gas
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gaspost-base-network-gas-conditions-beca9cc9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FrqMwMw6CQzhKJ1V62F0j

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 gaspost-base-network-gas-conditions-beca9cc9
```

Example prompt: What are the current gas conditions on Base right now — gas price, base fee, priority fee, and the latest block number?

## When to prefer this

Choose this endpoint when you need real-time, uncached Base gas data read directly from a public node — ideal for transaction fee estimation, gas gating logic in DeFi bots, or chain health monitoring. Prefer this over third-party gas APIs when transparency and directness from the node (no intermediary cache) matter, and when EIP-1559 parameters (base fee + priority fee) are both needed simultaneously.

## Known failure modes

- Public node unavailability or timeout causing a 5xx error
- Network congestion on Base causing delayed or stale node responses
- Malformed response if the node returns unexpected data
- Rate limiting or payment failure (x402) preventing access

## How this service works

Current gas conditions on Base, read live from a public node: gas price, base fee of the latest block, suggested priority fee, latest block number and timestamp. No parameters. No third-party API, no cache.

## Output

A JSON object containing live Base network gas data: current gas price, base fee of the latest block, suggested priority fee (tip), latest block number, and latest block timestamp — all read directly from a public node at request time with no caching or third-party intermediaries.

## 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": {
     "const": "GET"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gaspost-base-network-gas-conditions-beca9cc9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oraclepost.higgsfield.app](https://www.zero.xyz/host/oraclepost.higgsfield.app/llms.txt)
