Assets
The Octane Assets API gets the all the cryptocurrencies and blockchains supported for transactions.
Asset API Endpoint
Get Cryptocurrencies
Headers
Name
Type
Description
{
"supportedBlockchains": [
"ethereum",
"solana",
"bitcoin",
"dogecoin"
],
"fiatCurrencies": {
"USD": {
"name": "United States Dollar",
"base": "USD",
"logo": "https://raw.githubusercontent.com/abyiss/cryptoicons/master/SVG/usd.svg"
}
},
"tokens": {
"AAVE": {
"base": "AAVE",
"logo": "https://raw.githubusercontent.com/abyiss/cryptoicons/master/SVG/aave.svg",
"name": "Aave",
"quotes": ["USD"],
"blockchains": ["ethereum"],
"decimals": 18,
"limits": { "min": 0.001, "max": null }
},
"ALI": {
"base": "ALI",
"logo": "https://raw.githubusercontent.com/abyiss/cryptoicons/master/SVG/ali.svg",
"name": "Alethea Artificial Liquid Intelligence",
"quotes": ["USD"],
"blockchains": ["ethereum"],
"decimals": 18,
"limits": { "min": 2, "max": null }
}
},
"tokensbyBlockchain": {
"ethereum": [{
"base": "AAVE",
"logo": "https://raw.githubusercontent.com/abyiss/cryptoicons/master/SVG/aave.svg",
"name": "Aave",
"quotes": ["USD"],
"blockchains": ["ethereum"],
"decimals": 18,
"limits": { "min": 0.001, "max": null }
}],
"solana": [{
"base": "BOME",
"logo": "https://raw.githubusercontent.com/abyiss/cryptoicons/master/SVG/bome.svg",
"name": "BOOK OF MEME",
"quotes": ["USD"],
"blockchains": ["solana"],
"decimals": 6,
"limits": { "min": 10, "max": null }
},
}
}Copy & Paste Code
Asset Response Object
Attribute Name
Data Type
Description
Last updated