# minia2a Gas Now

> minia2a Gas Now is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Returns the current gas prices on Ethereum or other EVM networks in real time

## Facts

- Endpoint: GET https://minia2a.uk/x402/gas-now
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-gas-now-487771d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2NwZOtuZ0pIGVHPLtPI-0

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 minia2a-gas-now-487771d1
```

Example prompt: What are the current Ethereum gas prices right now — give me the slow, standard, and fast estimates in gwei so I can decide when to submit my transaction.

## When to prefer this

Use this endpoint when you need real-time EVM gas prices and are already operating in the x402 micropayment ecosystem on minia2a.uk, especially if you also use sibling endpoints like x402-wallet-intel or x402-address-parse and want a unified provider for blockchain data lookups.

## Known failure modes

- Network or upstream gas oracle is unavailable — may return 503 or empty data
- Invalid query parameters result in a 400 error
- Payment not processed or x402 payment header missing — returns 402 Payment Required
- Rate limiting if called too frequently without valid payment

## How this service works

minia2a service: x402-gas-now

## Output

Returns current gas price data for an EVM network, typically including slow/standard/fast fee estimates in gwei, base fee, and possibly priority fee (tip) values, giving agents real-time fee information to use when pricing or timing blockchain transactions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-gas-now-487771d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
