Skip to main content
GET
/
v1
/
config
/
chains
curl https://zap.dzap.io/v1/config/chains
{
  "1": {
    "name": "Ethereum",
    "contracts": {
      "zap": "0xCE2541ce645A1B232fF2fead53dcD9f369E86bA4"
    },
    "supportedProviders": [
      "aave", "balancer", "compound", "curve", "ethena",
      "etherfi", "euler", "fluid", "pancakeswap", "uniswap"
    ]
  }
}
Returns the Fuse-enabled chains — the subset of DZap-supported chains where zap (LP / one-click DeFi) flows are live. For every supported chain (swap + bridge), use the Trade API’s GET /v1/chains. Fetch this at runtime — new chains are added regularly.

Response

Returns a map keyed by chainId.
data
object
Map: chainId → chain config.
data.{chainId}.name
string
Chain name.
data.{chainId}.contracts.zap
string
Zap (Fuse) contract address on the chain.
data.{chainId}.supportedProviders
string[]
Protocols available for Fuse on the chain (e.g. aave, curve, uniswap, pancakeswap).
curl https://zap.dzap.io/v1/config/chains
{
  "1": {
    "name": "Ethereum",
    "contracts": {
      "zap": "0xCE2541ce645A1B232fF2fead53dcD9f369E86bA4"
    },
    "supportedProviders": [
      "aave", "balancer", "compound", "curve", "ethena",
      "etherfi", "euler", "fluid", "pancakeswap", "uniswap"
    ]
  }
}
This is the Fuse-only subset. For the full list of chains DZap routes across, use GET https://api.dzap.io/v1/chains.
Last modified on July 2, 2026