List of available packages

GET https://api.cryptomus.com/v2/user-api/aml/check/packages Copy

Response

Response parameters

FieldTypeDescription
idStringUnique package identifier
typeStringPackage type: "business" or "personal"
checks_countIntegerNumber of checks in a package
price.valueString (decimal)Package cost
price.per_checkString (decimal)Cost per check
price.currency.codeStringCurrency

Description

Unique package identifier

Type

String

Field

id

Description

Package type: "business" or "personal"

Type

String

Field

type

Description

Number of checks in a package

Type

Integer

Field

checks_count

Description

Package cost

Type

String (decimal)

Field

price.value

Description

Cost per check

Type

String (decimal)

Field

price.per_check

Description

Currency

Type

String

Field

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