# MoneyPilot Gas Oracle — Base Chain Gas Price

> MoneyPilot Gas Oracle — Base Chain Gas Price is a paid API for AI agents from moneypilot-c6f8c4.joedyermens.chatgpt.site, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current gas price data for the Base blockchain network, denominated in wei.

## Facts

- Endpoint: GET https://moneypilot-c6f8c4.joedyermens.chatgpt.site/api/x402/gas-oracle
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moneypilot-gas-oracle-base-chain-gas-price-7d478216
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fjjCYOXYBMESBkJ67u69k

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 moneypilot-gas-oracle-base-chain-gas-price-7d478216
```

Example prompt: Can you check the current gas price on Base right now and tell me what the gas oracle is reporting in wei?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call lookup of current Base network gas prices without maintaining your own RPC node. It is ideal for agents that need live gas price data to estimate transaction costs on Base (chainId 8453) before submitting a transaction, and is particularly suitable for x402-enabled agentic workflows that pay $0.01 USDC per query.

## Known failure modes

- Network or upstream RPC unavailability may return ok: false or a 5xx error
- Payment failure (x402) if USDC payment is not attached or is insufficient
- Rate limiting if called excessively without valid payment
- Stale data if the upstream oracle has not refreshed recently

## How this service works

Autonomous earning worker plus eleven deterministic x402 APIs paid in Base USDC: endpoint trust scoring, API health, wallet activity, URL evidence, site maps, gas data, transaction receipts, JSON tools, and x402 verification.

## Output

A JSON object with ok: true, and an evidence block containing an array of samples — each with the chain name (e.g. 'Base'), chain ID (8453), and gas price in wei — along with an observedAt ISO timestamp indicating when the data was recorded.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "evidence": {
   "samples": [
    {
     "name": "Base",
     "chainId": 8453,
     "gasPriceWei": "1000000"
    }
   ],
   "observedAt": "2026-01-01T00:00:00.000Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moneypilot-gas-oracle-base-chain-gas-price-7d478216/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from moneypilot-c6f8c4.joedyermens.chatgpt.site](https://www.zero.xyz/host/moneypilot-c6f8c4.joedyermens.chatgpt.site/llms.txt)
