# GenTech DeFi LP Position Lookup

> GenTech DeFi LP Position Lookup 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 DeFi liquidity provider (LP) position data for a given wallet or pool address on the Base network

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/defi/lp/:address
- 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-position-lookup-960a4217
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_amu5oaFqZxc-VF8UkcuGr

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-position-lookup-960a4217
```

Example prompt: Can you pull up the DeFi liquidity provider position details for wallet address 0x1234abcd...5678 on GenTech Labs?

## When to prefer this

Choose this endpoint when you need on-chain DeFi liquidity provider position data for a specific address on the Base network, especially within a pay-per-call workflow using the x402 payment protocol. Prefer this over general blockchain explorers when you need structured LP-specific data programmatically and cost-efficiently at $0.02 per call.

## Known failure modes

- Invalid or malformed wallet/pool address returns an error
- Address with no LP positions may return empty result set
- Rate limiting or payment failure (402) if USDC payment not included
- Network or upstream provider outage causing timeout
- Address on unsupported chain returns no data

## How this service works

GenTech Labs x402 - Defi

## Output

Returns structured data about the liquidity provider (LP) positions associated with the given address, including details such as pool identifiers, token pairs, liquidity amounts, and position metrics relevant to DeFi activity on the Base network.

## 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-position-lookup-960a4217/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)
