Retrieves connections between specified chains and tokens.
Represents a standard API response.
GET //lifi/connections HTTP/1.1 Host: beta.usemoon.ai Accept: */*
A promise that resolves to an ApiResponse containing the connections response.
{ "success": true, "message": "text", "data": { "connections": [ { "fromChainId": 1, "toChainId": 1, "fromTokens": [ { "name": "text", "address": "text", "symbol": "text", "decimals": 1, "logoURI": "text", "chainId": 1 } ], "toTokens": [ { "name": "text", "address": "text", "symbol": "text", "decimals": 1, "logoURI": "text", "chainId": 1 } ] } ] } }