Yield
Get DEX information for token
Yield
Get DEX information for token
GET
/
{contractAddress}
/
dexes
curl --request GET \
--url https://api.quantpilot.ai/{contractAddress}/dexes
{
"dexes": [
{
"name": "Uniswap V3",
"chainId": "1",
"volume24h": 1500000,
"poolCount": 3,
"bestPool": {
"address": "0x8ad599c3a0ff1de082011efddc58f1908eb6e6d8",
"pair": "WETH/USDC",
"liquidity": 15000000
}
}
]
}
Path Parameters
Token contract address
Response
200 - application/json
List of DEXes
DEX name
Chain ID where DEX is deployed
24-hour trading volume for this token in USD
Number of pools with this token
curl --request GET \
--url https://api.quantpilot.ai/{contractAddress}/dexes
{
"dexes": [
{
"name": "Uniswap V3",
"chainId": "1",
"volume24h": 1500000,
"poolCount": 3,
"bestPool": {
"address": "0x8ad599c3a0ff1de082011efddc58f1908eb6e6d8",
"pair": "WETH/USDC",
"liquidity": 15000000
}
}
]
}