GET
/
v1
/
pools
Get all pools
curl --request GET \
  --url https://zap.dzap.io/v1/pools
{
  "status": "success",
  "data": {
    "pools": [
      {
        "address": "0xc19040A41Ff34bf183625919538f2Da239d504d3",
        "chainId": 8453,
        "name": "WETH/SLUG",
        "provider": "uniswap",
        "apr": 40,
        "tvl": "1000000000",
        "underlyingAssets": [
          {
            "address": "0x4200000000000000000000000000000000000006",
            "chainId": 8453,
            "decimals": 18,
            "logo": "https://static.debank.com/image/coin/logo_url/eth/d61441782d4a08a7479d54aea211679e.png",
            "symbol": "WETH"
          },
          {
            "address": "0x77Eaa0a052CE2e8D0cfD6b3208eaf7ddf289D1EC",
            "chainId": 8453,
            "decimals": 9,
            "logo": "",
            "symbol": "SLUG"
          }
        ]
      }
    ],
    "pages": 100,
    "limit": 10,
    "offset": 0
  }
}

Query Parameters

provider
string
required

Provider name.

Example:

"uniswap"

chainId
number
required

Chain ID.

Example:

8453

limit
number

Number of pools to return.

Example:

10

offset
number

Offset for pagination.

Example:

0

Response

200
application/json

Successful response with supported pools

The response is of type object.