Skip to main content
GET
/
router
/
supported-bridges
/
all
Get all supported bridges
curl --request GET \
  --url https://api.chainrails.io/api/v1/router/supported-bridges/all \
  --header 'Authorization: Bearer <token>'
{
  "bridges": {
    "ACROSS": [
      {
        "sourceChain": "BASE_TESTNET",
        "destinationChain": "ARBITRUM_TESTNET",
        "supported": true,
        "bidirectional": true
      },
      {
        "sourceChain": "ETHEREUM_MAINNET",
        "destinationChain": "ARBITRUM_MAINNET",
        "supported": true,
        "bidirectional": true
      }
    ],
    "CCTP": [
      {
        "sourceChain": "BASE_TESTNET",
        "destinationChain": "ARBITRUM_TESTNET",
        "supported": true,
        "bidirectional": true
      }
    ]
  },
  "metadata": {
    "totalBridges": 4,
    "totalRoutes": 25,
    "lastUpdated": "2025-12-13T02:45:30.123Z"
  }
}

Authorizations

Authorization
string
header
required

Enter your Chainrails API key as a Bearer token

Response

All supported bridges retrieved successfully

bridges
object

Map of bridge names to their supported routes

Example:
{
"ACROSS": [
{
"sourceChain": "BASE_TESTNET",
"destinationChain": "ARBITRUM_TESTNET",
"supported": true,
"bidirectional": true
},
{
"sourceChain": "ETHEREUM_MAINNET",
"destinationChain": "ARBITRUM_MAINNET",
"supported": true,
"bidirectional": true
}
],
"CCTP": [
{
"sourceChain": "BASE_TESTNET",
"destinationChain": "ARBITRUM_TESTNET",
"supported": true,
"bidirectional": true
}
]
}
metadata
object