GET
/
dex
/
uniswapv3
/
pools
/
{poolAddress}
/
liquidity-distribution
Uniswap v3 Liquidity Distribution
curl --request GET \
  --url https://api.amberdata.com/defi/dex/uniswapv3/pools/{poolAddress}/liquidity-distribution \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "metadata": {
      "next": null
    },
    "data": [
      {
        "isActiveTick": true,
        "liquidity": "2241499413487953201",
        "price0USD": 26834.9,
        "price1USD": 1812.74,
        "token0AmountLocked": 58300.91207979999,
        "token1AmountLocked": 862439.5278076923,
        "tickIndex": 257220
      }
    ]
  }
}

Authorizations

x-api-key
string
header
default:API_KEY
required

Path Parameters

poolAddress
string
default:0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640
required

A token pair's liquidity pool address. Default is USDC/WETH 0.05%

Query Parameters

activeTick
boolean

When set to true, return just the current trading price, tickIndex, and the associated data.<br><br>Cannot be combined with price*USD{Min|Max} filters.

price0USDMin
number
default:0.95

Minimum (inclusive) price of token 0 in US dollars.

price0USDMax
number
default:1.05

Maximum (exclusive) price of token 0 in US dollars.

price1USDMin
number

Minimum (inclusive) price of token 1 in US dollars.

price1USDMax
number

Maximum (exclusive) price of token 1 in US dollars.

Response

200 - application/json

200

The response is of type object.