GET
/
v1
/
aave
/
aave_supported_tokens
Python (SDK)
from compass_api_sdk import CompassAPI, models


with CompassAPI(
    api_key_auth="<YOUR_API_KEY_HERE>",
) as compass_api:

    res = compass_api.aave_v3.aave_aave_supported_tokens(chain=models.V1AaveAaveSupportedTokensChain.ARBITRUM)

    # Handle response
    print(res)
{
  "tokens": [
    {
      "symbol": "<string>",
      "address": "<string>",
      "supplying_enabled": true,
      "borrowing_enabled": true
    }
  ]
}

Authorizations

x-api-key
string
header
required

Your Compass API Key. Get your key here.

Query Parameters

chain
enum<string>
default:arbitrum
required
Available options:
arbitrum,
base,
ethereum
block
integer | null

Optional block number (defaults to latest).

Response

Successful Response

tokens
AaveSupportedTokenMetadata · object[]
required

List of supported tokens with configuration metadata for a given chain.