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"
]
}
}
Config
Chains
List the chains where Fuse (LP / one-click DeFi) flows are enabled, with contract addresses and supported providers.
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 bychainId.
object
Map:
chainId → chain config.string
Chain name.
string
Zap (Fuse) contract address on the chain.
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 29, 2026