GET
/
networks
/
{network}
/
dexes
Supported Dexes List by Network (ID Map)
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/onchain/networks/{network}/dexes \
  --header 'x-cg-pro-api-key: <api-key>'
{
  "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"
      }
    }
  ]
}

Tips

  • You may use this endpoint to query the list of DEXs with DEX ID for other endpoints that contain params like dex.
  • You may include values such as page to specify which page of responses you would like to show.

Authorizations

x-cg-pro-api-key
string
header
required

Path Parameters

network
string
default:eth
required

network ID *refers to /networks

Example:

"eth"

Query Parameters

page
integer

page through results Default value: 1

Response

200 - application/json

Get list of supported DEXs on a network

The response is of type object.