Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dzap.io/llms.txt

Use this file to discover all available pages before exploring further.

List pools

GET https://zap.dzap.io/v1/pools
Returns pools available across supported protocols, optionally filtered by chain or DEX.

Query

chainId
integer
Filter by chain.
protocol
string
e.g. uniswap-v3, pancake-v3, aerodrome.
tokens
string
Comma-separated token addresses; returns pools containing all listed tokens.
limit
integer
Default 50, max 200.

Response

data.pools
object[]
List of pools with address, protocol, tokens, tvl, apr, feeTier.

Pool details

POST https://zap.dzap.io/v1/pool/details

Body

chainId
integer
required
poolAddress
string
required

Response

data
object
Full pool detail: tokens, tick range, current tick, liquidity, recent trades.

Examples

curl "https://zap.dzap.io/v1/pools?chainId=8453&protocol=uniswap-v3&limit=10"