v10

latestOpenAPI 3.1.02026-08-0375143791.1 KB
Monitors

List changes for a monitor

get/monitors/{monitor_id}/changes

Path parameters

monitor_idstring required
Example:mon_123

Query parameters

tagstring

Filter to items that have this tag.

Example:pricing

Filter to items that have this tag.

sincestring date-time

Only include items at or after this ISO 8601 timestamp.

Example:2026-06-01T00:00:00Z

Only include items at or after this ISO 8601 timestamp.

untilstring date-time

Only include items before this ISO 8601 timestamp.

Example:2026-06-28T00:00:00Z

Only include items before this ISO 8601 timestamp.

limitinteger

Maximum number of items to return per page (1-100). Defaults to 25.

Maximum number of items to return per page (1-100). Defaults to 25.

cursorstring

Opaque pagination cursor from a previous response.

Opaque pagination cursor from a previous response.

Response

A paginated list of changes for the monitor

has_moreboolean required
next_cursorstring nullable required

Example response

{
  "data": [
    {
      "id": "chg_123",
      "monitor_id": "mon_123",
      "title": "Acme pricing page changed",
      "summary": "The visible text on the page changed.",
      "tags": [
        "pricing",
        "competitor"
      ]
    }
  ]
}