Reserves list
get
Retrieves the list of reserves from the lending pool.
Authorizations
AuthorizationstringRequired
Query parameters
addressstringRequired
- The address of the lending pool.
chainIdstringRequired
- The chain ID of the blockchain network.
Header parameters
AuthorizationstringRequired
- The authorization token.
Responses
200
A promise that resolves to a LendingPoolAPIResponse containing an array of reserve addresses.
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.
datastring[]Optional
Contains the data returned by the API, if any.
get/lending-pool/reserves-list
GET /lending-pool/reserves-list?address=text&chainId=text HTTP/1.1
Host: beta.usemoon.ai/
Authorization: text
Accept: */*
200
A promise that resolves to a LendingPoolAPIResponse containing an array of reserve addresses.
{
"success": true,
"message": "text",
"data": [
"text"
]
}