Skip to main content
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 config 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.
chainId
number
Numeric chain identifier (e.g. 1 for Ethereum, 7565164 for Solana).
chainType
string
Runtime family — evm, svm, bvm, suivm, tronvm, tonvm, aptosvm, etc.
name
string
Human-readable chain name.
coin
string
Native currency symbol.
mainnet
boolean
true for mainnet chains.
swapBridgeContract
string
DZap router (DZapDiamond) address on the chain.
dcaContract
string
DCA contract address, when deployed.
rpcProviders
object[]
RPC endpoints — each with url, keyRequired, keyType.
blockExplorerUrl
string
Block explorer base URL.
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 2, 2026