Dexes

Supported Dexes List by Network (ID Map)

This endpoint allows you to query all the supported decentralized exchanges (DEXs) based on the provided network on GeckoTerminal

get/onchain/networks/{network}/dexes

Path parameters

networkstring required
Example:eth

network ID <br> *refers to /networks

Query parameters

pageinteger

page through results <br> Default value: 1

Response

Get list of supported DEXs on a network

Example response

{
  "data": [
    {
      "id": "uniswap_v2",
      "type": "dex",
      "attributes": {
        "name": "Uniswap V2"
      }
    },
    {
      "id": "sushiswap",
      "type": "dex",
      "attributes": {
        "name": "SushiSwap"
      }
    },
    {
      "id": "uniswap_v3",
      "type": "dex",
      "attributes": {
        "name": "Uniswap V3"
      }
    }
  ]
}

Changes