Skip to main content
GET
/
v1
/
monitoring
/
vendors
/
{vendorId}
/
events
curl "https://api.vouchmark.com/v1/monitoring/vendors/cmp_aBcD.../events?severity=HIGH&limit=10" \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": {
    "events": [
      {
        "eventId": "evt_aBcDeFgH...",
        "vendorId": "cmp_aBcD...",
        "source": "FIRS_TIN",
        "severity": "HIGH",
        "title": "TIN status changed for TEKCIFY TECHNOLOGIES LTD",
        "description": "TIN status changed from \"ACTIVE\" to \"INACTIVE\"",
        "changedFields": {
          "tinStatus": { "old": "ACTIVE", "new": "INACTIVE" }
        },
        "detectedAt": "2026-05-11T18:42:00Z"
      }
    ],
    "total": 1,
    "hasMore": false
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vouchmark.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the event stream for one vendor — every change Sentinel has flagged, oldest first. Paginated; default page size 25.

Path

vendorId
string
required

Query

page
integer
default:"1"
limit
integer
default:"25"
Max 100.
severity
string
Filter to LOW, MEDIUM, or HIGH. Comma-separate to combine.
source
string
Filter to one source — e.g. CAC, FIRS_TIN, SANCTIONS, GDELT, CBN, GOOGLE_NEWS.
curl "https://api.vouchmark.com/v1/monitoring/vendors/cmp_aBcD.../events?severity=HIGH&limit=10" \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": {
    "events": [
      {
        "eventId": "evt_aBcDeFgH...",
        "vendorId": "cmp_aBcD...",
        "source": "FIRS_TIN",
        "severity": "HIGH",
        "title": "TIN status changed for TEKCIFY TECHNOLOGIES LTD",
        "description": "TIN status changed from \"ACTIVE\" to \"INACTIVE\"",
        "changedFields": {
          "tinStatus": { "old": "ACTIVE", "new": "INACTIVE" }
        },
        "detectedAt": "2026-05-11T18:42:00Z"
      }
    ],
    "total": 1,
    "hasMore": false
  }
}