# GenTech Score

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

Returns a computed score for a given target, likely a token, wallet, or DeFi asset, using GenTech Labs' scoring methodology

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/score/
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-score-182b94b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7RfGtWQfr7DwRmwI0vTFN

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-score-182b94b7
```

Example prompt: Can you run a GenTech score on this token contract address 0xAbC123... and tell me what risk or trust score it gets?

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call risk or trust score for a blockchain entity (token, wallet, smart contract) within the GenTech Labs ecosystem. It is particularly suited for DeFi safety checks, wallet reputation scoring, or pre-trade token analysis where a structured numeric score is needed without building your own analysis pipeline.

## Known failure modes

- Missing or invalid 'input' object returns a 400 validation error
- Invalid HTTP method (only GET, HEAD, DELETE supported) causes rejection
- Payment not included or insufficient USDC results in 402 Payment Required
- Queried entity not found or unsupported returns empty or null score
- Network or upstream scoring engine unavailability causes 503 errors

## How this service works

GenTech Labs x402 - Score

## Output

A score or rating value (likely numeric) reflecting the risk, trust, or quality of the queried blockchain entity such as a token, wallet, or smart contract, returned as a JSON object from GenTech Labs' scoring engine.

## 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-score-182b94b7/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)
