Skip to main content

Get Manual Check

Returns the full result of a previously created manual AML/KYT check. A manual check may represent either:

  • a single address check
  • a transfer check (deposit / withdrawal)

HTTP Request

GET /v1/manual-checks/{id}/


Path Parameters

ParameterTypeRequiredDescription
idstringYesID of the manual check (UUID).

Response

A successful response returns HTTP 200 OK and a MANUAL_CHECK object.

Below is an example based on real API data:

{
"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"
}

MANUAL_CHECK object

FieldTypeDescription
idstringUnique ID of the manual check.
created_atstringWhen the check was created (ISO 8601).
check_typestring"deposit", "withdrawal", "single_address".
check_statusstring"checking", "checked", "error".
checked_atstring or nullWhen the check finished.
transferobject or nullFilled for transfer checks.
addressobject or nullFilled for address checks.
risk_levelstring"none", "low", "medium", "high", "undefined".
risk_scorenumber or nullScore between 0 and 1.
fiat_currencystringAlways "USD".

TRANSFER object (if present)

FieldTypeDescription
networkstringBlockchain network.
token_idstring"native" or token contract.
token_symbolstringHuman-readable token symbol.
tx_statusstring"bound" / "unbound" etc.
tx_hashstringBlockchain transaction hash.
occurred_atstringOn-chain timestamp.
input_addressstringSender.
output_addressstringRecipient.
directionstring"incoming" / "outgoing".
amountnumberToken amount.
value_in_fiatnumberUSD value.

Try it

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