curl https://api.dzap.io/v1/chains
[
{
"chainId": 1,
"chainType": "evm",
"name": "Ethereum",
"coin": "ETH",
"mainnet": true,
"swapBridgeContract": "0xF708e11A7C94abdE8f6217B13e6fE39C8b9cC0a6",
"blockExplorerUrl": "https://etherscan.io",
"logo": "https://res.cloudinary.com/dyek2toba/image/upload/chains/1.svg"
}
]
Trade API
Supported Chains
List every chain the Trade API routes across - EVM and non-EVM - with contract addresses and RPC endpoints.
GET
/
v1
/
chains
curl https://api.dzap.io/v1/chains
[
{
"chainId": 1,
"chainType": "evm",
"name": "Ethereum",
"coin": "ETH",
"mainnet": true,
"swapBridgeContract": "0xF708e11A7C94abdE8f6217B13e6fE39C8b9cC0a6",
"blockExplorerUrl": "https://etherscan.io",
"logo": "https://res.cloudinary.com/dyek2toba/image/upload/chains/1.svg"
}
]
Returns the full list of chains DZap routes across (swap + bridge), EVM and non-EVM. This is the superset - the Fuse chains endpoint returns only the Fuse-enabled subset.
Fetch this at runtime instead of hard-coding - new chains land regularly.
Response
Returns an array of chain objects.number
Numeric chain identifier (e.g.
1 for Ethereum, 7565164 for Solana).string
Runtime family -
evm, svm, bvm, suivm, tronvm, tonvm, aptosvm, etc.string
Human-readable chain name.
string
Native currency symbol.
boolean
true for mainnet chains.string
DZap router (DZapDiamond) address on the chain.
string
DCA contract address, when deployed.
object[]
RPC endpoints - each with
url, keyRequired, keyType.string
Block explorer base URL.
string
Chain logo URL.
curl https://api.dzap.io/v1/chains
[
{
"chainId": 1,
"chainType": "evm",
"name": "Ethereum",
"coin": "ETH",
"mainnet": true,
"swapBridgeContract": "0xF708e11A7C94abdE8f6217B13e6fE39C8b9cC0a6",
"blockExplorerUrl": "https://etherscan.io",
"logo": "https://res.cloudinary.com/dyek2toba/image/upload/chains/1.svg"
}
]
This endpoint lists all supported chains. For the Fuse-enabled subset (LP / one-click DeFi), use
GET https://zap.dzap.io/v1/config/chains.Last modified on July 29, 2026