> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dzap.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Supported Chains

> Every chain the Trade API routes across — EVM and non-EVM.

Returns the full list of chains DZap routes across (swap + bridge), EVM and non-EVM. This is the superset — the [Fuse config endpoint](/api/fuse/config) 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.

<ResponseField name="chainId" type="number">Numeric chain identifier (e.g. `1` for Ethereum, `7565164` for Solana).</ResponseField>
<ResponseField name="chainType" type="string">Runtime family — `evm`, `svm`, `bvm`, `suivm`, `tronvm`, `tonvm`, `aptosvm`, etc.</ResponseField>
<ResponseField name="name" type="string">Human-readable chain name.</ResponseField>
<ResponseField name="coin" type="string">Native currency symbol.</ResponseField>
<ResponseField name="mainnet" type="boolean">`true` for mainnet chains.</ResponseField>
<ResponseField name="swapBridgeContract" type="string">DZap router (DZapDiamond) address on the chain.</ResponseField>
<ResponseField name="dcaContract" type="string">DCA contract address, when deployed.</ResponseField>
<ResponseField name="rpcProviders" type="object[]">RPC endpoints — each with `url`, `keyRequired`, `keyType`.</ResponseField>
<ResponseField name="blockExplorerUrl" type="string">Block explorer base URL.</ResponseField>
<ResponseField name="logo" type="string">Chain logo URL.</ResponseField>

<RequestExample>
  ```bash curl theme={null}
  curl https://api.dzap.io/v1/chains
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "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"
    }
  ]
  ```
</ResponseExample>

<Note>
  This endpoint lists **all** supported chains. For the Fuse-enabled subset (LP / one-click DeFi), use [`GET https://zap.dzap.io/v1/config/chains`](/api/fuse/config).
</Note>
