Get Multiple Assets
GET /v3/assetsDescription
Get all the assets available for swapping.
Response
{
"assets": [
{
"ticker": "btc",
"name": "Bitcoin",
"networks": [
{
"network": "btc",
"chainId": null,
"addressRegex": "^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,62}$",
"memoSupport": false,
"confirmationsNeeded": 2,
"isDefault": true,
"txExplorerMask": "https://mempool.space/tx/{hash}"
}
]
},
{
"ticker": "eth",
"name": "Ethereum",
"networks": [
{
"network": "eth",
"chainId": 1,
"addressRegex": "^0x[a-fA-F0-9]{40}$",
"memoSupport": false,
"confirmationsNeeded": 10,
"isDefault": true,
"txExplorerMask": "https://etherscan.io/tx/{hash}"
}
]
}
]
}
Last updated on