Python
from compass_api_sdk import CompassAPI, models with CompassAPI( api_key_auth="<YOUR_API_KEY_HERE>", ) as compass_api: res = compass_api.universal.supported_tokens(chain=models.GenericSupportedTokensChain.ARBITRUM_MAINNET) # Handle response print(res)
{ "tokens": [ "1INCH" ] }
Get the list of supported tokens on a chain by the Compass API.
Your Compass API Key. Get your key here.
arbitrum:mainnet
base:mainnet
ethereum:mainnet
Successful Response
The response is of type object.
object
Was this page helpful?