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

GetAddressesProvider

get

Retrieves the addresses provider from the Aave V3 Pool Address Provider Registry.

Authorizations
AuthorizationstringRequired
Path parameters
accountstringRequired
  • The account identifier.
Query parameters
chainIdstringRequired
  • The blockchain chain identifier.
addressstringRequired
  • The address of the registry.
Header parameters
AuthorizationstringRequired
  • The authorization token.
Responses
200

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

application/json

Represents the API response structure for the Pool Address Provider Registry.

successbooleanRequired

Indicates whether the API request was successful.

messagestringRequired

A message providing additional information about the API response.

datastringOptional

The data returned by the API, if any.

get/aave/v3/poolAddressProviderRegistry/{account}/getAddressesProvider
GET /aave/v3/poolAddressProviderRegistry/{account}/getAddressesProvider?chainId=text&address=text HTTP/1.1
Host: beta.usemoon.ai/
Authorization: text
Accept: */*
200

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

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