Skip to main content
GET
/
api
/
v1
/
supported-chains
Get all supported chains
curl --request GET \
  --url https://public-backend.bungee.exchange/api/v1/supported-chains
{
  "success": true,
  "statusCode": 200,
  "message": "<string>",
  "result": [
    {
      "chainId": 10,
      "name": "Optimism",
      "icon": "https://media.socket.tech/networks/optimism.svg",
      "currency": {
        "address": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
        "name": "Ether",
        "symbol": "ETH",
        "decimals": 18,
        "icon": "https://media.socket.tech/networks/ethereum.svg",
        "minNativeCurrencyForGas": "900000000000000"
      },
      "explorers": [
        "https://optimistic.etherscan.io"
      ],
      "sendingEnabled": true,
      "receivingEnabled": true,
      "isAutoEnabled": true,
      "isManualEnabled": true,
      "dexes": [
        "rainbow",
        "zeroxv2",
        "oneinch",
        "uniswapV3",
        "openocean",
        "kyberswap"
      ],
      "bridges": [
        "across",
        "mayan",
        "symbiosis",
        "celer",
        "synapse",
        "stargate-v2",
        "cctp-v2",
        "cctp",
        "cctp-v2-fast"
      ]
    }
  ]
}

Response

200 - application/json

Retrieve all supported chains and their details

success
boolean
default:true
required

flag indicating whether the req was successful

statusCode
number
default:200
required

Http status code

message
string | null

error message if request failed

result
object[]