# GenTech Security Score

> GenTech Security Score 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).

Returns a security score for a given on-chain address (e.g. token contract or wallet) to assess risk and trustworthiness

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/security/score/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-security-score-5dec8efc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_88eg5r8CKpJGRlx9tNwov

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-security-score-5dec8efc
```

Example prompt: Can you run a GenTech security score check on the contract address 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 and tell me if it's safe to interact with?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call security score for a specific blockchain address without committing to a subscription. Best suited for DeFi agents, token screeners, or wallet analysis workflows that need on-demand risk signals on the Base Network ecosystem. Prefer this over generic block explorers when you need a structured, machine-readable security score rather than raw transaction data.

## Known failure modes

- Invalid or malformed address returns an error or null score
- Address not yet indexed returns no data
- Rate limiting or payment failure (x402) blocks the request
- Network-specific address formats may not be supported
- Score may be unavailable for newly deployed contracts with no on-chain history

## How this service works

GenTech Labs x402 - Security

## Output

A security score and associated risk signals for the queried blockchain address, indicating the trustworthiness and safety level of the contract or wallet, potentially including threat categories, vulnerability indicators, and a numeric or categorical risk rating.

## 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-security-score-5dec8efc/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)
