# DeFi Pool Top Listings — x402 Paid API

> DeFi Pool Top Listings — x402 Paid API is a paid API for AI agents from 5-9-107-124.nip.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the top DeFi liquidity pools ranked by TVL for a given chain, with optional filters for minimum TVL and stablecoin-only pools.

## Facts

- Endpoint: GET https://5-9-107-124.nip.io/defi-pool/top
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-pool-top-listings-x402-paid-api-1f2c4427
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eJ5RRngM8Fq2wULwnq2Sl

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 defi-pool-top-listings-x402-paid-api-1f2c4427
```

Example prompt: Show me the top 10 stablecoin liquidity pools on Base with at least $500,000 TVL, paying per call in USDC with no account needed.

## When to prefer this

Use this endpoint when you need a ranked list of top DeFi pools by TVL on Base or Ethereum without requiring an account or API key — just pay $0.02 USDC per call. Prefer this over other pool discovery tools when you want permissionless, pay-per-use access with optional stablecoin and minimum TVL filtering.

## Known failure modes

- Payment not received or insufficient USDC — 402 response requiring payment
- Invalid chain value (not 'base', 'ethereum', or 'all') — likely 400 or unfiltered result
- limit exceeds max of 25 — may be clamped or return error
- min_tvl too high returns empty pool list
- Network or RPC issues cause stale or missing on-chain data

## How this service works

On-chain token/contract risk scanner. Pay-per-call USDC on Base via x402. No account, no KYC.

## Output

A ranked list of up to 25 DeFi liquidity pools matching the filters, including pool identifiers and TVL figures for the specified chain(s), returned after a micropayment of $0.02 USDC on Base via x402.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "base | ethereum | all"
  },
  "limit": {
   "type": "integer",
   "description": "how many pools to return (max 25)"
  },
  "min_tvl": {
   "type": "integer",
   "description": "minimum pool TVL in USD"
  },
  "stablecoin": {
   "type": "string",
   "description": "'true' = stablecoin pools only"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-pool-top-listings-x402-paid-api-1f2c4427/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 5-9-107-124.nip.io](https://www.zero.xyz/host/5-9-107-124.nip.io/llms.txt)
