List of available packages
GET https://api.cryptomus.com/v2/user-api/aml/check/packages Copy
Response
Response parameters
| Field | Type | Description |
|---|---|---|
| id | String | Unique package identifier |
| type | String | Package type: "business" or "personal" |
| checks_count | Integer | Number of checks in a package |
| value | String (decimal) | Package cost |
| per_check | String (decimal) | Cost per check |
| currency[code] | String | Currency |
Description
Unique package identifierType
StringDescription
Package type: "business" or "personal"Type
StringDescription
Number of checks in a packageType
IntegerDescription
Package costType
String (decimal)Description
Cost per checkType
String (decimal)Description
CurrencyType
String
Response example
{
"state": 0,
"result": {
"business": [
{
"id": "01JVY32598NEHCTBDKDNAP3671",
"type": "business",
"checks_count": 12000,
"price": {
"value": "1000.00",
"per_check": "0.08333333",
"currency": {
"code": "USDT"
}
}
}
],
"personal": [
{
"id": "01JVY8EQ6TM041AGEGD1P59JDG",
"type": "personal",
"checks_count": 20000,
"price": {
"value": "5000.00",
"per_check": "0.25",
"currency": {
"code": "USDT"
}
}
}
]
}
}Copy