# Base Network Gas Price & Wallet Health Brief

> Base Network Gas Price & Wallet Health Brief is a paid API for AI agents from agentkit-x402-buy.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns the current gas price and network health data for the Base (EIP-155:8453) blockchain, paid per-call via x402 micropayment.

## Facts

- Endpoint: GET https://agentkit-x402-buy.vercel.app/api/gas-base
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-network-gas-price-wallet-health-brief-da1440c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-R6UP3kPURyu5-Gat6v-Q

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-network-gas-price-wallet-health-brief-da1440c4
```

Example prompt: What's the current gas price on Base right now — give me the gwei figure and network status so I can decide whether to submit my transaction.

## When to prefer this

Choose this endpoint when you need real-time gas price data specifically for the Base (Coinbase L2) network and can pay per-call via x402 USDC micropayment with no account signup. Prefer it over general Ethereum gas APIs when Base-specific gwei data is required, or when you want a no-auth, pay-as-you-go model for occasional spot checks rather than a subscription-based gas oracle.

## Known failure modes

- Payment not received or insufficient USDC — returns HTTP 402 Payment Required
- Upstream Base RPC unavailable — returns 5xx error with no gas data
- Malformed query parameters — returns 400 Bad Request
- Temporary network congestion causing stale or delayed gas data

## How this service works

Instant Base wallet health brief. Pay $0.50 USDC via x402. No account.

## Output

A JSON object containing the chain name ('base'), the seller wallet address, the network identifier ('eip155:8453'), and the current gas price expressed in gwei. This gives an agent a real-time snapshot of Base network fee conditions.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "seller": "0xEb76f3442EAF192EBdDbc1F7EeBD59CdE5e00D35",
  "network": "eip155:8453",
  "gas_price_gwei": 0.01
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-network-gas-price-wallet-health-brief-da1440c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentkit-x402-buy.vercel.app](https://www.zero.xyz/host/agentkit-x402-buy.vercel.app/llms.txt)
