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.codeNetwork code (btc, bsc, tron...)
networks.nameHuman-readable network name (BSC, TRON ...)
networks.token_standardToken standard (ERC‑20, BEP‑20, etc.)

Parameter

currency

Description

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

Parameter

icon

Description

Currency icon URL

Parameter

networks

Description

List of available networks

Parameter

networks.code

Description

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

Parameter

networks.name

Description

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

Parameter

networks.token_standard

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