v10

latestOpenAPI 3.1.02026-08-0375143791.1 KB
Monitors

List changes

Returns an account-wide feed of detected changes across monitors.

get/monitors/changes

Query parameters

monitor_idstring

Filter changes to a single monitor.

Example:mon_123

Filter changes to a single monitor.

target_type'page' | 'sitemap' | 'extract'

Filter by target type.

Filter by target type.

change_detection_type'exact' | 'semantic'

Filter by change detection type.

Filter by change detection type.

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

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"
      ]
    }
  ]
}