Get crypto deposit options
Last updated
Returns the (network, asset) pairs you can deposit, with display metadata and formatting precision for the amount input.
Amount limits are not included here.
Use Get crypto deposit limits for the authoritative min and max values of a selected pair.
Response type:
Response example:
Last updated
type Response = {
currencyCode: string; // e.g. "POLYGON_USDC"
network: string; // e.g. "POLYGON"
asset: string; // e.g. "USDC"
networkTitle: string;
assetTitle: string;
networkIcon: string;
assetIcon: string;
exchangeRate: number; // crypto -> USD rate used to credit the balance
precision: number; // decimals to use when formatting the amount
}[][
{
"currencyCode": "POLYGON_USDC",
"network": "POLYGON",
"asset": "USDC",
"networkTitle": "Polygon",
"assetTitle": "USD Coin",
"networkIcon": "https://assets.fonbnk.com/networks/polygon.svg",
"assetIcon": "https://assets.fonbnk.com/assets/usdc.svg",
"exchangeRate": 1,
"precision": 6
}
]
