# minia2a Gas Price Lookup

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

Returns current blockchain gas prices for use in transaction cost estimation

## Facts

- Endpoint: GET https://minia2a.uk/x402/gas-price
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-gas-price-lookup-f386f2c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-rOiCXW-8P70TllnNVZgZ

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-price-lookup-f386f2c8
```

Example prompt: What's the current gas price on Ethereum right now? I want to know if it's a good time to send a transaction.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call gas price lookup without managing your own RPC node or subscribing to a gas oracle service. Ideal for lightweight agents that only occasionally need gas price data and want to avoid API key management overhead.

## Known failure modes

- Network or RPC node unavailable — upstream blockchain data source unreachable
- Invalid network type specified in query params — unsupported chain
- Rate limiting or payment failure — x402 payment not processed correctly
- Stale data returned if upstream oracle is delayed

## How this service works

minia2a service: x402-gas-price

## Output

Returns current blockchain gas price data, likely including values such as base fee, priority fee (tip), and possibly fast/standard/slow tier estimates in gwei or similar units for the requested network.

## 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-price-lookup-f386f2c8/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)
