Get Supported Blockchains and Tokens
Prod Env
https://api.aio.cash
Prod Env
https://api.aio.cash
GET
/integration/supported_assets
Supported Assets Endpoint
Overview
/integration/supported_assets
endpoint retrieves a list of supported assets on the AllInOne (AIO) platform, detailed for each supported blockchain. This endpoint is essential for developers who need accurate and current information on cryptocurrencies supported by AIO.HTTP Request
/integration/supported_assets
Authorization
apikey: {your_api_key}
{your_api_key}
with your actual API key provided by AIO. Ensure that this API key does not have IP access control restrictions for seamless testing.Response Structure
success
: Indicates if the request was successful (e.g., true
)data
: Contains detailed lists of mainnet
and testnet
assets:chain
: Name of the blockchain (e.g., "BITCOIN"
)chain_symbol
: Symbolic representation of the blockchain (e.g., "BTC"
)tokens
: An array of tokens supported on the blockchain, including:symbol
: Token symbol (e.g., "ETH"
)contract_address
: Smart contract address if applicable (e.g., "0x..."
for ERC-20 tokens)decimals
: Number of decimals the token uses (e.g., 18
)main_token
: Boolean indicating if it is the primary token of the chain (e.g., true
)