# GenTech Gas

> GenTech Gas is a paid API for AI agents from api.gentechlabs.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-20).

Retrieves blockchain gas price data and fee estimates for transactions on the Base Network

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/gas/gas/
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-20
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-gas-10200686
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_En7DnQncsQj6dWQfhI5gN

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 gentech-gas-10200686
```

Example prompt: What are the current gas prices on the Base network 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 real-time gas price data specifically for the Base Network within a GenTech Labs ecosystem context, especially if already using other GenTech services (DeFi, Market, Security) and want a unified pay-per-call pricing model via x402 protocol at $0.005 USDC per call.

## Known failure modes

- Network unavailability returns 5xx error
- Rate limiting if called too frequently without payment
- Invalid query parameters return 400 error
- x402 payment not fulfilled results in 402 Payment Required response
- Stale data if upstream blockchain node is lagging

## How this service works

GenTech Labs x402 - Gas

## Output

Returns current gas price data for the Base Network, including gas fee estimates (likely in gwei or USDC-equivalent), potentially including slow/standard/fast transaction tiers and estimated confirmation times.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gentech-gas-10200686/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gentechlabs.net](https://www.zero.xyz/host/api.gentechlabs.net/llms.txt)
