GET
/
{contractAddress}
/
dexes
/
{dexId}
curl --request GET \
  --url https://api.quantpilot.ai/{contractAddress}/dexes/{dexId} \
  --header 'x-api-key: <api-key>'
{
  "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
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

contractAddress
string
required

Token contract address

dexId
string
required

Response

200 - application/json

Detailed DEX information

The response is of type object.