Skip to main content

List Alerts

GET/compliance/alertsOpen in the API playground →

Request

Authorizationstringheaderrequired

Bearer olive_live_xxx (Compliance Officer/Admin)

Query Parameters

statusstringquery

Filter: open, investigating, resolved, false_positive

limitintegerquerydefault: 50

Page size

offsetintegerquerydefault: 0

Pagination offset


Response

alertsarray

List of alert objects

totalinteger

Total count


Examples

Request
cURL
curl -X GET "https://demo.api.vultlocal.com/api/v1/compliance/alerts?status=open&limit=20" \
-H "Authorization: Bearer olive_live_xxx"
Response
200 OK
{
"alerts": [
{
"id": 101,
"subscriber_id": "sub_abc123",
"alert_type": "VELOCITY_LIMIT",
"severity": "HIGH",
"details": "10 transactions in 5 minutes",
"status": "open",
"created_at": "2025-01-20T10:00:00Z"
}
],
"total": 1,
"limit": 20,
"offset": 0
}