cURL
curl --request GET \ --url https://aboki-b2b-eobk.onrender.com/api/v1/business-onramp/supported-tokens \ --header 'Authorization: <authorization>'
{ "success": true, "data": { "supportedTokens": { "base": [ {} ], "solana": [ {} ], "ethereum": [ {} ] }, "statistics": { "totalTokens": 123, "networks": [ {} ], "baseTokens": 123, "solanaTokens": 123, "ethereumTokens": 123, "fullySupported": 123 } } }
Get all tokens supported for onramp across all networks with validation status
{ "success": true, "data": { "supportedTokens": { "base": [ { "symbol": "ENB", "name": "ENB Token", "contractAddress": "0x...", "decimals": 18, "feePercentage": 1.5, "network": "base", "supportLevel": "fully_supported", "validation": { "contractSupported": true, "hasLiquidity": true, "canProcessOnramp": true } }, { "symbol": "USDC", "name": "USD Coin", "contractAddress": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "decimals": 6, "feePercentage": 0.5, "network": "base", "supportLevel": "fully_supported", "validation": { "contractSupported": true, "hasLiquidity": true, "canProcessOnramp": true } } ], "solana": [ { "symbol": "SOL", "name": "Solana", "contractAddress": "11111111111111111111111111111112", "decimals": 9, "network": "solana", "validation": { "jupiterSupported": true, "hasLiquidity": true, "canProcessOnramp": true } } ], "ethereum": [ { "symbol": "ETH", "name": "Ethereum", "decimals": 18, "network": "ethereum", "supportLevel": "fully_supported" } ] }, "statistics": { "totalTokens": 12, "networks": ["base", "solana", "ethereum"], "baseTokens": 8, "solanaTokens": 3, "ethereumTokens": 1, "fullySupported": 10 } } }