Tools

get

Retrieves tools based on the provided chains.

Query parameters
chainsstringOptional
  • Optional query parameter specifying the chains to filter tools.
Responses
200
- A promise that resolves to an ApiResponse containing the tools data.
application/json
get
GET //lifi/tools HTTP/1.1
Host: beta.usemoon.ai
Accept: */*
200
  • A promise that resolves to an ApiResponse containing the tools data.
{
  "success": true,
  "message": "text",
  "data": {
    "bridges": [
      {
        "key": "text",
        "name": "text",
        "logoURI": "text",
        "supportedChains": [
          {
            "fromChainId": 1,
            "toChainId": 1
          }
        ]
      }
    ],
    "exchanges": [
      {
        "key": "text",
        "name": "text",
        "logoURI": "text",
        "supportedChains": [
          1
        ]
      }
    ]
  }
}