Skip to main content

List

Returns a list of assets and blockchains available for payments.

POST Asset/List

Input

ParameterTypeRequiredDescriptionDefault
MerchantIdstringyesyour merchant ID
OrderAmountnumberyesthe order amount in orderCurrency
OrderCurrencystringnofiat order currency'USD'

Output

The output is an array of Asset objects.

Asset Type

ParameterTypeDescription
Codestringasset symbol, e.g. "USDC"
Namestringasset name, e.g. "USD Coin"
DisplayDecimalsnumberhow many decimal places to display in the UI
IsTokenbooleanwhether or not this asset is an ERC20 token
IsStablebooleanwhether or not this asset is a stablecoin
Pricenumberthe price of asset in orderCurrency
AmountnumberOrderAmount converted to asset
BlockchainsBlockchain[]the list of blockchains, on which this asset can be sent

Blockchain Type

ParameterTypeDescription
Codestringblockchain code, e.g. "ETH"
Namestringblockchain name, e.g. "Ethereum"
Decimalsstringnumber of decimal places for the asset on this blockchain
IsEvmbooleanwhether or not this is an EVM-compatible blockchain
ChainIdnumberEVM chain ID – only for EVM blockchains
TokenAddressstringsmart contract address – only for ERC20 tokens

Example Input

{
"MerchantId": "8XOZ64KC9X",
"OrderAmount": 1.00,
"OrderCurrency": "USD",
}

Example Output

[
{
"Code": "usdc",
"Name": "USD Coin",
"DisplayDecimals": 4,
"IsToken": true,
"IsStable": true,
"Price": 1.00008,
"Amount": 0.9999,
"Blockchains": [
{
"Code": "eth",
"Name": "Ethereum",
"ChainId": 1,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
},
{
"Code": "bsc",
"Name": "Binance Smart Chain",
"ChainId": 56,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d"
},
{
"Code": "arb",
"Name": "Arbitrum One",
"ChainId": 42161,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
},
{
"Code": "base",
"Name": "Base",
"ChainId": 8453,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
},
{
"Code": "pgn",
"Name": "Polygon",
"ChainId": 137,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359"
}
]
},
{
"Code": "usdt",
"Name": "Tether",
"DisplayDecimals": 4,
"IsToken": true,
"IsStable": true,
"Price": 0.99995,
"Amount": 1.0001,
"Blockchains": [
{
"Code": "eth",
"Name": "Ethereum",
"ChainId": 1,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
},
{
"Code": "bsc",
"Name": "Binance Smart Chain",
"ChainId": 56,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0x55d398326f99059ff775485246999027b3197955"
},
{
"Code": "arb",
"Name": "Arbitrum One",
"ChainId": 42161,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9",
},
{
"Code": "base",
"Name": "Base",
"ChainId": 8453,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2"
},
{
"Code": "pgn",
"Name": "Polygon",
"ChainId": 137,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F"
}
]
},
{
"Code": "dai",
"Name": "Dai",
"DisplayDecimals": 4,
"IsToken": true,
"IsStable": true,
"Price": 1.00003,
"Amount": 1.0000,
"Blockchains": [
{
"Code": "eth",
"Name": "Ethereum",
"ChainId": 1,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F"
},
{
"Code": "bsc",
"Name": "Binance Smart Chain",
"ChainId": 56,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3"
},
{
"Code": "pgn",
"Name": "Polygon",
"ChainId": 137,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063"
}
]
},
{
"Code": "busd",
"Name": "Binance USD",
"DisplayDecimals": 2,
"IsToken": true,
"IsStable": true,
"Price": 1.00040,
"Amount": 1.00,
"Blockchains": [
{
"Code": "bsc",
"Name": "Binance Smart Chain",
"ChainId": 56,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56"
}
]
},
{
"Code": "usdp",
"Name": "Pax Dollar",
"DisplayDecimals": 4,
"IsToken": true,
"IsStable": true,
"Price": 1.00040,
"Amount": 0.9996,
"Blockchains": [
{
"Code": "eth",
"Name": "Ethereum",
"ChainId": 1,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0x8E870D67F660D95d5be530380D0eC0bd388289E1"
}
]
},
{
"Code": "tusd",
"Name": "TrueUSD",
"DisplayDecimals": 4,
"IsToken": true,
"IsStable": true,
"Price": 0.99988,
"Amount": 1.0001,
"Blockchains": [
{
"Code": "eth",
"Name": "Ethereum",
"ChainId": 1,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0x0000000000085d4780B73119b644AE5ecd22b376"
}
]
},
{
"Code": "usdce",
"Name": "Bridged USDC",
"DisplayDecimals": 4,
"IsToken": true,
"IsStable": true,
"Price": 1.00008,
"Amount": 0.9999,
"Blockchains": [
{
"Code": "pgn",
"Name": "Polygon",
"ChainId": 137,
"IsEvm": true,
"Decimals": 6,
"TokenAddress": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174"
}
]
},
{
"Code": "zarp",
"Name": "ZARP Stablecoin",
"DisplayDecimals": 4,
"IsToken": true,
"IsStable": true,
"Price": 0.05220,
"Amount": 19.1571,
"Blockchains": [
{
"Code": "pgn",
"Name": "Polygon",
"ChainId": 137,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": "0xb755506531786C8aC63B756BaB1ac387bACB0C04"
}
]
},
{
"Code": "btc",
"Name": "Bitcoin",
"DisplayDecimals": 8,
"IsToken": false,
"IsStable": false,
"Price": 94374.98379,
"Amount": 0.00001060,
"Blockchains": [
{
"Code": "btc",
"Name": "Bitcoin",
"ChainId": null,
"IsEvm": false,
"Decimals": 8,
"TokenAddress": null
}
]
},
{
"Code": "eth",
"Name": "Ether",
"DisplayDecimals": 6,
"IsToken": false,
"IsStable": false,
"Price": 3247.55520,
"Amount": 0.000308,
"Blockchains": [
{
"Code": "eth",
"Name": "Ethereum",
"ChainId": 1,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": null,
},
{
"Code": "arb",
"Name": "Arbitrum One",
"ChainId": 42161,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": null
},
{
"Code": "base",
"Name": "Base",
"ChainId": 8453,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": null
}
]
},
{
"Code": "bnb",
"Name": "Binance Coin",
"DisplayDecimals": 6,
"IsToken": false,
"IsStable": false,
"Price": 692.95218,
"Amount": 0.001443,
"Blockchains": [
{
"Code": "bsc",
"Name": "Binance Smart Chain",
"ChainId": 56,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": null
}
]
},
{
"Code": "matic",
"Name": "Matic",
"DisplayDecimals": 6,
"IsToken": false,
"IsStable": false,
"Price": 0.45575,
"Amount": 2.194185,
"Blockchains": [
{
"Code": "pgn",
"Name": "Polygon",
"ChainId": 137,
"IsEvm": true,
"Decimals": 18,
"TokenAddress": null
}
]
},
{
"Code": "ltc",
"Name": "Litecoin",
"DisplayDecimals": 8,
"IsToken": false,
"IsStable": false,
"Price": 103.45127,
"Amount": 0.00966639,
"Blockchains": [
{
"Code": "ltc",
"Name": "Litecoin",
"ChainId": null,
"IsEvm": false,
"Decimals": 8,
"TokenAddress": null
}
]
},
{
"Code": "doge",
"Name": "Dogecoin",
"DisplayDecimals": 8,
"IsToken": false,
"IsStable": false,
"Price": 0.33381,
"Amount": 2.99571613,
"Blockchains": [
{
"Code": "doge",
"Name": "Dogecoin",
"ChainId": null,
"IsEvm": false,
"Decimals": 8,
"TokenAddress": null
}
]
},
{
"Code": "xmr",
"Name": "Monero",
"DisplayDecimals": 8,
"IsToken": false,
"IsStable": false,
"Price": 195.74281,
"Amount": 0.00510874,
"Blockchains": [
{
"Code": "xmr",
"Name": "Monero",
"ChainId": null,
"IsEvm": false,
"Decimals": 12,
"TokenAddress": null
}
]
}
]