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 |
| price.value | String (decimal) | Package cost |
| price.per_check | String (decimal) | Cost per check |
| price.currency.code | String | Currency |
Description
Unique package identifierType
StringField
idDescription
Package type: "business" or "personal"Type
StringField
typeDescription
Number of checks in a packageType
IntegerField
checks_countDescription
Package costType
String (decimal)Field
price.valueDescription
Cost per checkType
String (decimal)Field
price.per_checkDescription
CurrencyType
StringField
price.currency.code
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