For the complete documentation index, see llms.txt. This page is also available as Markdown.

Tokens

get

Fetches tokens from the LiFi service.

Responses
200

A promise that resolves to an ApiResponse containing the tokens data.

application/json

Represents a standard API response.

successbooleanRequired
messagestringRequired
get/lifi/tokens
GET /lifi/tokens HTTP/1.1
Host: beta.usemoon.ai/
Accept: */*
200

A promise that resolves to an ApiResponse containing the tokens data.

{
  "success": true,
  "message": "text",
  "data": {
    "tokens": {
      "ANY_ADDITIONAL_PROPERTY": [
        {
          "name": "text",
          "address": "text",
          "symbol": "text",
          "decimals": 1,
          "logoURI": "text",
          "chainId": 1
        }
      ]
    }
  }
}