Supported Tokens
Retrieve all tokens supported by your business for onramp orders with current fees, validation status, and network-specific information.
Your Public Key from the dashboard. Format: Bearer pk_live_your_key_here
Query Parameters
Perform real-time validation on all tokens across networks (default: false)
Filter tokens by specific network: base, solana, ethereum, or all (default: all)
Response
Whether the request was successful
Base network tokens with validation status
Solana network tokens with Jupiter support
Ethereum network tokens with API support
Total number of supported tokens
List of supported networks
Number of Base network tokens
Number of Solana network tokens
Number of Ethereum network tokens
Tokens ready for onramp orders
Example Response
{
"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
}
}
}