List of Available Coins and Networks

List of supported coins and networks that can be checked for AML. The current list is updated, so the list may be expanded over time.

GET https://api.cryptomus.com/v2/user-api/aml/check/currencies Copy

Response

Response parameters

ParameterDescription
currencyCurrency code (BTC, ETH, BNB, etc.)
iconCurrency icon URL
networksList of available networks
networks[code]Network code (btc, bsc, tron...)
networks[name]Human-readable network name (BSC, TRON ...)
networks[token_standard]Token standard (ERC‑20, BEP‑20, etc.)

Description

Currency code (BTC, ETH, BNB, etc.)

Description

Currency icon URL

Description

List of available networks

Description

Network code (btc, bsc, tron...)

Description

Human-readable network name (BSC, TRON ...)

Description

Token standard (ERC‑20, BEP‑20, etc.)

Response example


1{
2  "state": 0,
3  "result": [
4    {
5      "currency": "BNB",
6      "icon": "https://.../BNB.svg",
7      "networks": [
8        {
9          "code": "bsc",
10          "name": "BSC",
11          "token_standard": "BEP-20"
12        }
13      ]
14    }
15  ]
16}
Copy