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

Addresses provider

get

Retrieves the addresses provider from the lending pool instance.

Authorizations
AuthorizationstringRequired
Query parameters
addressstringRequired
  • The address query parameter.
chainIdstringRequired
  • The chain ID query parameter.
Header parameters
AuthorizationstringRequired
  • The authorization token from the request header.
Responses
200

A promise that resolves to a LendingPoolAPIResponse containing the addresses provider.

application/json

Represents the structure of the API response for the Lending Pool.

successbooleanRequired

Indicates whether the API request was successful.

messagestringRequired

Provides a message related to the API response.

datastringOptional

Contains the data returned by the API, if any.

get/lending-pool/addresses-provider
GET /lending-pool/addresses-provider?address=text&chainId=text HTTP/1.1
Host: beta.usemoon.ai/
Authorization: text
Accept: */*
200

A promise that resolves to a LendingPoolAPIResponse containing the addresses provider.

{
  "success": true,
  "message": "text",
  "data": "text"
}