# nacian.finance Top Liquidity Pools by TVL

> nacian.finance Top Liquidity Pools by TVL is a paid API for AI agents from nacian.finance, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns the top liquidity pools ranked by total value locked (TVL) across Arbitrum, Base, and Ethereum chains

## Facts

- Endpoint: GET https://nacian.finance/api/x402/pools/top-pools-by-tvl
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nacian-finance-fb591410
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9KiDzEfIh4FlWw6dBIvtR

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 nacian-finance-fb591410
```

Example prompt: Show me the top liquidity pools by TVL on Arbitrum for ETH and USDC — I want to see pool IDs, fee tiers, and how much value is locked in each.

## When to prefer this

Use this endpoint when you need a ranked list of the most liquid pools by TVL across Arbitrum, Base, or Ethereum, especially when you want to discover the best venues for swapping or providing liquidity for a token pair. Prefer this over the detailed pool info endpoint when you need broad discovery rather than deep metrics on a known pool, and over the APR endpoint when TVL ranking rather than yield is the primary concern.

## Known failure modes

- Unsupported chain specified — only Arbitrum, Base, and Ethereum are supported
- Invalid or unrecognized token addresses return empty or error response
- No pools found for the specified token pair on the given chain
- Payment not processed — x402 payment required at $0.01 USDC per call
- Rate limiting or upstream data provider unavailability causing timeout

## How this service works

Access top liquidity pools by TVL across multiple chains (Arbitrum, Base, Ethereum). Tokens do not necessarily need to be token0 and token1 respectively in the pool, they are reordered automatically.

## Output

Returns a list of top liquidity pools sorted by TVL for the specified chain and optional token pair, including pool ID, fee tier, raw liquidity value, total USD value locked, and per-token TVL amounts, along with chain metadata, protocol name, and response timestamp.

## Response schema (JSON Schema)

```json
{
 "schema": {
  "data": {
   "chain": "string",
   "pools": [
    {
     "id": "string",
     "feeTier": "string",
     "liquidity": "string",
     "totalValueLockedUSD": "string",
     "totalValueLockedToken0": "string",
     "totalValueLockedToken1": "string"
    }
   ],
   "params": {
    "chain": "string",
    "token0": "string",
    "token1": "string"
   },
   "protocol": "string",
   "timestamp": "string"
  },
  "chain": "string",
  "success": "bool"
 },
 "isDiscoverable": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nacian-finance-fb591410/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nacian.finance](https://www.zero.xyz/host/nacian.finance/llms.txt)
