Page Monitoring Changes
const url = 'https://sitechecker.pro/api/v1/page_monitoring_changes?project_id=12345&url=example&crawl_id=1782174402&change_source=all';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://sitechecker.pro/api/v1/page_monitoring_changes?project_id=12345&url=example&crawl_id=1782174402&change_source=all' \ --header 'Authorization: Bearer <token>'Returns Site Audit and Content Updates changes for one URL in one crawl, including issue changes and content update events.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Example
12345Project ID.
Page URL.
Example
1782174402Monitoring run identifier — the run UNIX timestamp (seconds, UTC). Treat it as an opaque token: take it verbatim from a summary endpoint’s points[].crawl_id.
Filter changes by source. Default: all.
Responses
Section titled “Responses”Changes for the URL/crawl
object
object
object
ID of Site Audit change for this URL/crawl, if needed for details.
Stable Site Audit issue type ID from backend issue dictionary.
Issue name.
Issue category.
Issue severity.
Whether this issue was added or removed for the selected URL.
object
Content update/change ID for details endpoint.
Content event type.
Human-readable event name.
Before value for scalar changes; for text_content it is reconstructed from the diff (DELETE side); multiple sub-changes are joined; null when no scalar/diff (e.g. wp_plugin_added/removed). Capped at 10000 characters.
After value for scalar changes; for text_content it is reconstructed from the diff (INSERT side); multiple sub-changes are joined; null when no scalar/diff (e.g. wp_plugin_added/removed). Capped at 10000 characters.
Whether full details/diff are available.
Example
{ "data": { "site_audit_changes": [ { "change_id": "eyJzIjoic2l0ZV9hdWRpdCJ9", "issue_id": 201, "issue_name": "Image size is over 100 KB", "category": "page_speed", "severity": "opportunity", "direction": "added" } ], "content_changes": [ { "content_update_id": "eyJzIjoiY29udGVudCJ9", "event_type": "text_content", "event_name": "Text content", "has_details": true } ] }}Missing or invalid API key
object
object
Example
{ "error": { "code": "unauthorized", "message": "Invalid or missing API key." }}No active API entitlement for the account, or the project belongs to another account
Returned as api_access_denied when the account has no active API entitlement, and as forbidden when the requested project belongs to another account.
object
object
Example
{ "error": { "code": "api_access_denied", "message": "API access is not available: the account has no active API entitlement." }}Project or crawl not found
The exact missing resource is in error.code: project_not_found, segment_not_found, crawl_not_found, keyword_not_found, opportunity_not_found, snapshot_unavailable or not_found.
object
object
Example
{ "error": { "code": "project_not_found", "message": "Project not found." }}Validation error or invalid filter
Rejected query parameters. error.code is validation_error for parameter validation, or invalid_date_range / invalid_filter / invalid_event_type / unsupported_filter / unsupported_dimension / unsupported_scope / segment_filter_unsupported for module-specific rules.
object
object
Example
{ "error": { "code": "validation_error", "message": "project_id is required." }}Rate limit exceeded — retry after the interval in the Retry-After header
object
object
Example
{ "error": { "code": "rate_limit_exceeded", "message": "Rate limit exceeded. Try again later." }}Internal server error
object
object
Example
{ "error": { "code": "internal_error", "message": "Internal server error." }}