Skip to main content

Address Exposure

Returns category exposure for the address used in a manual check.

This endpoint analyses the full transaction history of the address from the manual check and returns how much of the value comes from different AML categories (DEX, exchange, dust, etc.).


HTTP Request

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


Path Parameters

ParameterTypeRequiredDescription
idstringYesID of the manual check (MANUAL_CHECK.id).

Response

A successful response returns HTTP 200 OK with a JSON body — an ADDRESS_EXPOSURE object.

Example Response

{
"entity_category": null,
"entity_name": null,
"exposure": [
{
"entity_category": "dex",
"value_share": 0.6398
},
{
"entity_category": "exchange",
"value_share": 0.3588
},
{
"entity_category": "fee",
"value_share": 0.0014
},
{
"entity_category": "dust",
"value_share": 0.0
}
]
}

Fields

FieldTypeDescription
entity_categorystring or nullDominant AML category of the address, if a single service/category is attributed.
entity_namestring or nullHuman-readable name for the address/service, if available (e.g. exchange name).
exposurearrayList of AML categories contributing to the address exposure (see structure below).

Each item inside exposure:

FieldTypeDescription
entity_categorystringAML category code (e.g. dex, exchange, fee, dust).
value_sharenumberShare of total value attributed to this category (0–1, fraction).

Try it

GET/v1/manual-checks/{id}/address-exposure/
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.
}