Skip to main content
GET
/
router
/
supported-routes
/
bridge
/
{bridge}
Get supported routes for specific bridge
curl --request GET \
  --url https://api.chainrails.io/api/v1/router/supported-routes/bridge/{bridge} \
  --header 'Authorization: Bearer <token>'
{
  "supportedRoutes": [
    {
      "sourceChain": "BASE_TESTNET",
      "destinationChain": "ARBITRUM_TESTNET",
      "supported": true,
      "bidirectional": true
    }
  ],
  "bridgeInfo": {
    "bridge": "ACROSS",
    "routeCount": 12
  }
}

Authorizations

Authorization
string
header
required

Enter your Chainrails API key as a Bearer token

Path Parameters

bridge
enum<string>
required

Bridge protocol

Available options:
ACROSS,
CCTP,
GATEWAY,
RHINOFI

Response

Supported routes for bridge retrieved successfully

supportedRoutes
object[]
bridgeInfo
object