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
Parameter | Description |
---|---|
currency | Currency code (BTC, ETH, BNB, etc.) |
icon | Currency icon URL |
networks | List 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.) |
Parameter
currencyDescription
Currency code (BTC, ETH, BNB, etc.)Parameter
iconDescription
Currency icon URLParameter
networksDescription
List of available networksParameter
networks.codeDescription
Network code (btc, bsc, tron...)Parameter
networks.nameDescription
Human-readable network name (BSC, TRON ...)Parameter
networks.token_standardDescription
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