# GenTech DeFi LP Data

> GenTech DeFi LP Data 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 liquidity pool data for a specified protocol on the Base network via the x402 pay-per-call standard

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/defi/lp/0x1/
- 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-lp-data-a351f084
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__hGTrtk1XyK_oTUBV3_Ya

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-lp-data-a351f084
```

Example prompt: Can you pull the liquidity pool data for the protocol at address 0x1 on the Base network using GenTech Labs' DeFi endpoint?

## When to prefer this

Choose this endpoint when you need on-chain DeFi liquidity pool data specifically from the Base network and want a simple pay-per-call model via x402 without managing API keys. It is well-suited for agents that need lightweight, per-query DeFi data lookups without committing to a subscription, especially when integrated into a GenTech Labs multi-service workflow alongside their Security, Market, and Agent endpoints.

## Known failure modes

- Invalid or non-existent pool address returns an error or empty result
- Missing x402 payment header causes a 402 Payment Required response
- Unsupported HTTP method (other than GET/HEAD/DELETE) returns a 405 error
- Network or upstream Base node unavailability causes a 503 or timeout
- Rate limiting if too many calls are made in rapid succession

## How this service works

GenTech Labs x402 - Defi

## Output

Returns liquidity pool data such as token pair composition, reserves, total value locked (TVL), pool fees, and other DeFi metrics for the specified protocol address on the Base network. The exact response schema may vary by pool type but is expected to be a JSON object with pool-level statistics.

## 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-lp-data-a351f084/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)
