Market
Retrieve token available marketplace
GET
/listings/market/:tokenId
Example on DeFi Lens: https://defilens.ai/tokens/bitcoin/markets
Headers
Name
Type
Description
x-partner-key
string
Your API Key
Ex: xxxx
Body
Name
Type
Description
tokenId
string
Source token name
Ex: bitcoin
Example request
curl -X 'GET' \
'https://api.defilens.ai/listings/market/bitcoin' \
-H 'accept: */*'
Response
{
"data": [
{
"exchangeImage": "https://s2.coinmarketcap.com/static/img/exchanges/64x64/270.png",
"exchangeName": "Binance",
"marketPair": "BTC/FDUSD",
"price": 61498.52588985,
"volumeUsd": 3979024791.151182,
"liquidity_score": 933,
"marketUrl": "https://www.binance.com/en/trade/BTC_FDUSD",
"depthUsdNegativeTwo": 3836171.09588373,
"depthUsdPositiveTwo": 4379599.67628964,
"marketReputation": 1,
"volumePercent": 8.762886035203,
"id": "1262381bitcoin"
},
"total": 1
Data return
Name
Type
Description
depthUsdPositiveTwo
Float
Capital required to increase the price by 2%.
depthUsdNegativeTwo
Float
Capital required to reduce the price by 2%.
liquidity_score
Integer
This is a value between 0 to 1,000 (in most cases) based on the slippage incurred by various order sizes. A higher score indicates a more liquid market.
volumePercent
Float
The percentage of the total market volume that this specific market pair represents.
Last updated