> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dataforb2b.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Monitor Events

> Recent events delivered to a monitor

Returns recent events delivered to a monitor, newest first.

## Path Parameters

<ParamField path="monitor_id" type="number" required>The monitor.</ParamField>

## Query Parameters

<ParamField query="limit" type="number" default="50">Max events to return.</ParamField>
<ParamField query="offset" type="number" default="0">Pagination offset.</ParamField>

## Response

<ResponseField name="id" type="number">Event ID</ResponseField>
<ResponseField name="signal" type="string">The signal</ResponseField>
<ResponseField name="event_type" type="string">The sub-event</ResponseField>
<ResponseField name="target" type="object">`{ type, key }`</ResponseField>
<ResponseField name="data" type="object">The signal-specific body — see [Signal Catalog](/api-reference/signals-catalog)</ResponseField>
<ResponseField name="created_at" type="string">ISO 8601 timestamp</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.dataforb2b.ai/monitors/42/events?limit=20" \
    -H "api_key: YOUR_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "id": 9012,
      "signal": "post_engagement",
      "event_type": "post_engagement",
      "target": { "type": "profile", "key": "ACoAA…" },
      "data": { "post": {}, "new_reactions": [], "new_comments": [], "count": 3 },
      "created_at": "2026-06-12T10:47:18.000000"
    }
  ]
  ```
</ResponseExample>
