# Jordan — GenTech AAE Builder Multi-Service API Gateway

> Jordan — GenTech AAE Builder Multi-Service API Gateway is a paid API for AI agents from api.gentechlabs.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Pay-per-call gateway exposing 7 Base Network services: token security, wallet analysis, agent discovery, market intelligence, DeFi LP analytics, NFT search, and treasury defense

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/%7Bservice%7D/%7Bpath%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jordan-gentech-aae-builder-multi-service-api-gateway-88970b23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zs-jrHrw-K4X8vutsQBna

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 jordan-gentech-aae-builder-multi-service-api-gateway-88970b23
```

Example prompt: Can you check the risk score and security assessment for this Base Network token at address 0xABC123 — I want to know if it's safe before I buy in.

## When to prefer this

Choose this endpoint when you need on-chain intelligence specifically for the Base Network ecosystem across multiple analytical domains — token security, wallet profiling, agent discovery, LP analytics, NFT search, and treasury defense — all from a single pay-per-call gateway. Prefer it over general blockchain explorers when you want pre-scored risk assessments and structured JSON rather than raw chain data. Best suited for agents that need to make fast, low-cost ($0.01/call) decisions about Base Network assets without maintaining their own indexing infrastructure.

## Known failure modes

- Invalid service or path parameter returns an error JSON with success: false
- Insufficient USDC payment (below $0.01) triggers a 402 Payment Required response
- Unknown wallet or token address may return empty data or a not-found error
- Rate limiting or gateway timeout on high-traffic Base Network conditions
- Malformed address format causes validation error in the response

## How this service works

Pay-per-call API gateway with 7 services across Base Network. Token security, wallet analysis, agent discovery, market intelligence, DeFi LP analytics, NFT search, treasury defense.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing service-specific results such as a risk level string (e.g. 'low'), a numeric score (e.g. 85), agent metadata, market data, NFT listings, LP metrics, or treasury health indicators depending on the service and path called.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "risk": "low",
   "score": 85
  },
  "success": true
 },
 "description": "Returns a JSON object with the requested service result or an error message."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jordan-gentech-aae-builder-multi-service-api-gateway-88970b23/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)
