Skip to main content

List of Manual Checks

Returns a paginated list of manual AML checks that were created via /v1/manual-checks/check-address/ or /v1/manual-checks/check-transfer/.


HTTP Request

GET /v1/manual-checks/


Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number within the paginated result set.
page_sizeintegerNoNumber of results to return per page.

If no parameters are provided, default pagination settings are used.


Response

A successful response returns HTTP 200 OK with a JSON body — a paginated list of MANUAL_CHECK objects.

Example Response

{
"page": 1,
"page_size": 20,
"total_pages": 10,
"total_items": 193,
"items": [
{
"id": "dda28996-5aac-4e6c-9844-e4e658b466ca",
"created_at": "2025-11-27T16:46:56.687761+03:00",
"check_type": "deposit",
"check_status": "checked",
"checked_at": "2025-11-27T16:46:58.300966+03:00",
"transfer": {
"network": "ETH",
"token_id": "native",
"token_symbol": "ETH",
"tx_status": "bound",
"tx_hash": "0xd74f7e2a5081eb82c1d0a4fbd1859f23bed5fab8280f0aaf9e987019acc973a1",
"occurred_at": "2024-02-29T19:24:59+03:00",
"input_address": "0x98f79674d5f2f777d44e253bfaf905d7491e8cef",
"output_address": "0x2a6ced4b10769147824a36e3d646eda222e50f2a",
"direction": "incoming",
"amount": 7.2181350653139,
"value_in_fiat": 24403.1
},
"address": null,
"risk_level": "medium",
"risk_score": 0.5,
"fiat_currency": "USD"
}
]
}

Top-level Pagination Fields

FieldTypeDescription
pageintegerCurrent page number.
page_sizeintegerNumber of items returned per page.
total_pagesintegerTotal number of pages available.
total_itemsintegerTotal number of items in the result set.
itemsarrayList of MANUAL_CHECK objects.

MANUAL_CHECK Object

Each item in items has the following structure:

FieldTypeDescription
idstringUnique identifier of the manual check (UUID).
created_atstringTime when the check was created (ISO 8601).
check_typestringType of check: deposit, withdrawal, single_address, etc.
check_statusstringStatus of the check: checking, checked, error.
checked_atstringnull
transferobjectnull
addressobjectnull
risk_levelstringResulting risk level: high, medium, low, none, or undefined.
risk_scorenumbernull
fiat_currencystringFiat currency used for risk calculations, currently always "USD".

Transfer Object (deposit / withdrawal checks)

When check_type is deposit or withdrawal, the transfer field contains:

FieldTypeDescription
networkstringBlockchain network code (e.g. ETH, BTC, TRX).
token_idstringToken identifier — native for native coin or contract address for token.
token_symbolstringTicker symbol of the asset (e.g. ETH, USDT).
tx_statusstringTransfer binding status, e.g. bound.
tx_hashstringBlockchain transaction hash.
occurred_atstringTimestamp when the on-chain transaction occurred (ISO 8601).
input_addressstringSender address of the transfer.
output_addressstringRecipient address of the transfer.
directionstringDirection relative to your system: incoming or outgoing.
amountnumberTransfer amount in asset units.
value_in_fiatnumberTransfer value in fiat (USD) at the time of calculation.

Address Object (single address checks)

When check_type is single_address, the address field contains:

FieldTypeDescription
networkstringBlockchain network code (e.g. ETH).
addressstringBlockchain address that was manually checked.

Try it

GET/v1/manual-checks/
API KEY ID
API KEY SECRET
Query params (JSON)
HTTP Request
Press "Send Request" to generate HTTP request.
HTTP …
{
// Response will be shown here after the request.
}