v1

latestOpenAPI 3.1.02026-07-13570316.1 KB
Bridge

List Supported Chains

List all blockchain networks available for cross-chain bridging. Each chain includes metadata and native currency details.

Authentication: Pass x-client-id header for frontend usage from allowlisted origins or x-secret-key for backend usage.

get/v1/bridge/chains

Response

Successfully retrieved supported bridge chains.

Example response

{
  "result": [
    {
      "chainId": 1,
      "name": "Ethereum Mainnet",
      "icon": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/ethereum/512.png",
      "nativeCurrency": {
        "name": "Ether",
        "symbol": "ETH",
        "decimals": 18
      }
    },
    {
      "chainId": 43114,
      "name": "Avalanche C-Chain",
      "icon": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/avalanche/512.png",
      "nativeCurrency": {
        "name": "Avalanche",
        "symbol": "AVAX",
        "decimals": 18
      }
    },
    {
      "chainId": 137,
      "name": "Polygon Mainnet",
      "icon": "ipfs://Qmd58rKLnBfteouAcmdjQ1HzDvRLSLjMbHjuXRytsKwAkD",
      "nativeCurrency": {
        "name": "POL",
        "symbol": "POL",
        "decimals": 18
      }
    }
  ]
}