# GenTech DeFi

> GenTech DeFi 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).

Retrieves decentralized finance (DeFi) data and analytics via the GenTech Labs x402 pay-per-call API on Base Network

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/defi/
- 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-defi-f6f4c395
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UqDE5CcfYGHvQFYKTC7vb

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-defi-f6f4c395
```

Example prompt: Can you pull the latest DeFi data from GenTech Labs for the top liquidity pools on Base Network so I can see current yields and TVL?

## When to prefer this

Choose this endpoint when you need DeFi-specific data (liquidity pools, yield rates, TVL, protocol metrics) on the Base Network via a pay-per-call micropayment model. Prefer it over generic blockchain data providers when targeting Base Network DeFi protocols with agent-friendly x402 payment integration. It complements sibling endpoints like GenTech Gas (gas prices), GenTech NFT (NFT data), and GenTech Market (market data) within the same GenTech Labs ecosystem.

## Known failure modes

- Missing or invalid x402 payment header returns 402 Payment Required
- Unsupported HTTP method returns validation error (only GET, HEAD, DELETE allowed)
- Invalid or unknown DeFi resource path returns 404 Not Found
- Insufficient USDC balance for pay-per-call payment causes request rejection
- Rate limiting or network issues may return 503 or timeout errors

## How this service works

GenTech Labs x402 - Defi

## Output

Returns structured DeFi data such as protocol metrics, liquidity pool information, yield rates, TVL figures, and other on-chain decentralized finance analytics from the Base Network ecosystem.

## 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-defi-f6f4c395/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)
