Skip to main content
GET
/
v1
/
config
/
providers
Supported providers
curl --request GET \
  --url https://zap.dzap.io/v1/config/providers
{
  "status": "success",
  "data": {
    "aerodrome": {
      "name": "Aerodrome",
      "id": "aerodrome",
      "logo": "https://aerodrome.finance/aerodrome.svg",
      "supportedChainIds": [
        1,
        137,
        250
      ]
    },
    "uniswap": {
      "name": "Uniswap",
      "id": "uniswap",
      "logo": "https://app.uniswap.org/favicon.png",
      "supportedChainIds": [
        1,
        137,
        250
      ]
    }
  }
}

Response

Successful response with supported providers

status
enum<string>
required

Response status

Available options:
success
data
object
required
Example:
{
"aerodrome": {
"name": "Aerodrome",
"id": "aerodrome",
"logo": "https://aerodrome.finance/aerodrome.svg",
"supportedChainIds": [1, 137, 250]
},
"uniswap": {
"name": "Uniswap",
"id": "uniswap",
"logo": "https://app.uniswap.org/favicon.png",
"supportedChainIds": [1, 137, 250]
}
}
I