V1
List supported bridge and exchange tools
Returns supported bridge and exchange adapters, grouped by type. Use the optional chains query parameter to filter tools by supported chain IDs.
get/v1/tools
Query parameters
chainsstring
Example:1,8453
Comma-separated chain IDs used to filter supported tools.
Headers
x-api-keystring
Optional API key for higher rate limits and fee rules.
Response
Supported tools response.
Example response
{
"exchanges": [
{
"key": "RELAY",
"name": "Relay",
"logoURI": "https://example.com/relay.png",
"supportedChains": [
"1",
"8453"
]
}
],
"bridges": [
{
"key": "RELAY",
"name": "Relay",
"logoURI": "https://example.com/relay.png",
"supportedChains": [
"1",
"8453"
]
}
]
}