# GenTech Route

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

Routes HTTP GET/HEAD/DELETE requests through GenTech Labs' x402 pay-per-call gateway for Web3-native API access

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/route/
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-route-12f6f1e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2oKEQlCiRZRSaj-y--V7q

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-route-12f6f1e0
```

Example prompt: Route a GET request through GenTech Labs' x402 gateway with no extra headers or path params — just a standard HTTP GET type request.

## When to prefer this

Choose this endpoint when you need to route read-only or idempotent HTTP requests (GET, HEAD, DELETE) through a Web3-native, x402 micropayment-gated gateway, especially when operating in a Base Network / USDC payment context and want per-call billing without a subscription. Prefer over traditional proxies when your agent stack already handles x402 payment flows.

## Known failure modes

- Missing required 'type' or 'method' fields returns a 400 validation error
- Invalid method (e.g. POST) not in enum [GET, HEAD, DELETE] causes rejection
- Insufficient USDC balance for x402 payment results in 402 Payment Required
- Network timeout if the routed destination is unresponsive
- Malformed query or path params may cause downstream routing failure

## How this service works

GenTech Labs x402 - Route

## Output

The agent receives an HTTP response routed through GenTech Labs' x402 infrastructure, including any response headers and body data returned by the underlying target, delivered after automatic USDC micropayment processing.

## 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-route-12f6f1e0/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)
