# GenTech Defender Classifier

> GenTech Defender Classifier 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-18).

Classifies addresses or transactions on the Base Network (chain 8453) for security threats and defensive analysis

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/defender/classify/8453/0x1/
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-defender-classifier-cfd59f9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YCJ9fJpfzSTpzY2FD5XxZ

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-defender-classifier-cfd59f9c
```

Example prompt: Can you run a Defender classification on the address 0xAbC123...456 on Base Network to see if it's flagged as malicious or risky?

## When to prefer this

Use this endpoint when you need fast, pay-per-call on-chain security classification specifically for addresses or contracts on the Base Network (chain ID 8453). Prefer it over generic blockchain explorers when you need a structured threat label or risk classification rather than raw transaction data. It is well-suited for pre-trade checks, wallet validation, or DeFi integration safety reviews on Base.

## Known failure modes

- Invalid or malformed address returns an error or empty classification
- Address not indexed on Base Network may return no result or unknown classification
- Payment failure (insufficient USDC balance) results in 402 response and no classification
- Rate limiting or network timeouts may cause request failures
- Non-Base chain addresses may return irrelevant or null results

## How this service works

GenTech Labs x402 - Defender

## Output

Returns a classification result for the given address on Base Network (chain 8453), including a threat category, risk label, or security assessment indicating whether the address is safe, suspicious, or malicious.

## 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-defender-classifier-cfd59f9c/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)
