> ## 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.

# List vendor events

> Smart Sentinel monitoring events for a vendor.

Returns the event stream for one vendor — every change Sentinel has flagged. Paginated; default page size 20.

## Path parameters

<ParamField path="vendorId" type="string" required />

## Query parameters

<ParamField query="severity" type="string">
  Filter by severity: `LOW`, `MEDIUM`, `HIGH`, or `CRITICAL`.
</ParamField>

<ParamField query="page" type="integer" default="1" />

<ParamField query="limit" type="integer" default="20">
  Max 100.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.vouchmark.com/v1/monitoring/vendors/cmp_aBcD.../events?severity=HIGH&limit=10" \
    -H "Authorization: Bearer $TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": [
      {
        "eventId": "evt_aBcDeFgH...",
        "vendorId": "cmp_aBcD...",
        "agentName": "firs-tin",
        "severity": "HIGH",
        "data": {
          "tinStatus": { "old": "ACTIVE", "new": "INACTIVE" }
        },
        "createdAt": "2026-05-11T18:42:00Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 1,
      "totalPages": 1
    }
  }
  ```
</ResponseExample>

Each event's `data` is a free-form object whose keys depend on the agent (`agentName`) that produced it.
