Skip to main content

List of Alerts

Returns the list of KYT alerts detected for transfers and risky entity interactions.


HTTP Request

GET /v1/alerts/


Query Parameters

ParameterTypeRequiredDescription
client_idstringNoID of the client associated with the transfer.
risk_typestringNoRisk type (e.g., origin_of_funds, sender_exposure, sender_entity, recipient_entity).
risk_levelstringNoRisk level. Possible values: low, medium, high, severe.
alert_statusstringNoStatus of the alert. Allowed values: open, in_progress, awaiting_response, done.
created_fromdatetimeNoMinimum creation timestamp.
created_todatetimeNoMaximum creation timestamp.
occurred_fromdatetimeNoMinimum timestamp of when the risk occurred.
occurred_todatetimeNoMaximum timestamp of when the risk occurred.
networkstringNoNetwork code (e.g., BTC, ETH, TRX).
token_idstringNoToken ID involved in the transfer.
token_symbolstringNoToken symbol (e.g., USDT).
entity_categorystringNoCode of the risky entity category.
proximitystringNoType of proximity with the risky entity. Allowed: direct, indirect.
pageintegerNoPage number.
page_sizeintegerNoNumber of items per page.

Deprecated parameters: type, interaction, status — will be removed soon.


Response

A successful response returns HTTP 200 OK and an object containing pagination data and a list of alerts.


ALERT object

FieldTypeDescription
idstringID of the alert.
created_attimestampWhen the alert was created.
updated_attimestamp|nullWhen the alert was last updated.
risk_levelstringLevel of the associated risk.
risk_typestringType of associated risk.
risk_occurred_attimestampWhen the risk occurred.
alert_statusstringCurrent alert status (open, in_progress, awaiting_response, done).
entity_interactionobject|nullDetails of interaction with a risky entity. See ALERT_ENTITY_INTERACTION.
transferobject|nullTransfer object associated with the alert.
fiat_currencystringFiat currency symbol (e.g., USD).

ALERT_ENTITY_INTERACTION structure

FieldTypeDescription
entity_categorystringCode of the entity category.
proximitystringType of interaction. One of: direct, indirect.
value_in_fiatfloat|nullValue in fiat currency.
value_sharefloat|nullShare of the entity category in the transfer.
ruleobjectRule that produced the alert. See RISK_RULE.

Example Response

{
"page": 1,
"page_size": 20,
"total_pages": 1,
"total_items": 11,
"items": [
{
"id": "35e378e2-bbc3-40fa-ab15-f82ab3837d9a",
"created_at": "2025-08-08T13:00:58.053446+03:00",
"updated_at": null,
"risk_level": "severe",
"risk_type": "origin_of_funds",
"risk_occurred_at": "2025-07-30T11:29:42+03:00",
"alert_status": "open",
"entity_interaction": {
"entity_category": "sanctions",
"proximity": "indirect",
"value_in_fiat": 29.81,
"value_share": 0.9932,
"rule": {
"rule_type": "origin_of_funds",
"rule_sub_type": "indirect",
"entity_category": "sanctions",
"min_value_in_fiat": 10.0,
"min_value_share": 0.2
}
},
"transfer": {
"id": "818c979b-6821-4fb3-8980-3f10e702066c",
"client_id": null,
"attempt_id": null,
"registered_at": "2025-08-08T11:28:59.302452+03:00",
"risk_level": "severe",
"risk_score": 1.0,
"network": "TRX",
"token_id": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"token_symbol": "USDT",
"tx_status": "bound",
"tx_hash": "da2b7289f340edbb20547944cbb2f02671a49f5a88ba357cb62582ab13afc4e0",
"occurred_at": "2025-07-30T08:29:42Z",
"input_address": "TP18BS6ZVV9MxtUjJwcpU3NcFMkZZaJU5c",
"output_address": "TVU5jBHJSwFLRSFbuufGddW4B7kzNcmXyB",
"direction": "incoming",
"amount": 30.0,
"value_in_fiat": 30.01
},
"fiat_currency": "USD"
}
]
}
GET/v1/alerts/
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.
}