Create Check Request
POST https://api.cryptomus.com/v2/user-api/aml/check/request Copy
Request
Request parameters
Parameter | Type | Required | Description |
---|---|---|---|
currency_code | string | yes | Currency code (BTC, ETH, BNB, etc.) |
network_code | string | yes | Network (btc, bsc, tron) |
address | string | * | Wallet address (if checking address) |
txid | string | * | Transaction ID (if checking transaction) |
Parameter
currency_codeDescription
Currency code (BTC, ETH, BNB, etc.)Type
stringRequired
yesParameter
network_codeDescription
Network (btc, bsc, tron)Type
stringRequired
yesParameter
addressDescription
Wallet address (if checking address)Type
stringRequired
*Parameter
txidDescription
Transaction ID (if checking transaction)Type
stringRequired
*
* - Pass either address or txid. At least one is required.
Request Body
{
"currency_code": "BTC",
"network_code": "btc",
"address": "bc1q6prt2hne8e8k4mgux...",
"txid": "0x0"
}
Copy