GET
/
{contractAddress}
/
dexes
/
{dexId}
curl --request GET \
  --url https://api.quantpilot.ai/{contractAddress}/dexes/{dexId}
{
  "name": "Uniswap V3",
  "chainId": "1",
  "version": "3.0.0",
  "router": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45",
  "factory": "0x1F98431c8aD98523631AE4a59f267346ea31F984",
  "feeStructure": [
    {
      "tier": "low",
      "fee": 0.05
    },
    {
      "tier": "medium",
      "fee": 0.3
    },
    {
      "tier": "high",
      "fee": 1
    }
  ],
  "totalValueLocked": 500000000,
  "pools": [
    {
      "address": "0x8ad599c3a0ff1de082011efddc58f1908eb6e6d8",
      "pair": "WETH/USDC",
      "liquidity": 15000000,
      "volume24h": 1200000
    }
  ]
}

Path Parameters

contractAddress
string
required

Token contract address

dexId
string
required

Response

200 - application/json
Detailed DEX information
name
string

DEX name

chainId
string

Chain ID where DEX is deployed

version
string

DEX version

router
string

Router contract address

factory
string

Factory contract address

feeStructure
object[]
totalValueLocked
number

Total value locked in USD

pools
object[]