Skip to main content
GET
/
catchAll
/
monitors
/
{monitor_id}
/
status
Get monitor status history
curl --request GET \
  --url https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": null,
  "monitor_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "total_statuses": 39,
  "statuses": [
    {
      "status": "disable",
      "created_at": "2026-02-06T00:42:00Z",
      "additional_information": null
    },
    {
      "status": "dump",
      "created_at": "2026-02-05T12:04:00Z",
      "additional_information": {
        "nb_existing_records": 408,
        "nb_final_records": 28
      }
    },
    {
      "status": "scheduled",
      "created_at": "2026-02-05T12:00:00Z",
      "additional_information": {
        "job_id": "c3d4e5f6-a7b8-9012-cdef-345678901234",
        "start_date": "2026-02-04T12:00:00",
        "end_date": "2026-02-05T12:00:00"
      }
    },
    {
      "status": "created",
      "created_at": "2026-01-19T16:28:00Z",
      "additional_information": null
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication.

Path Parameters

monitor_id
string<uuid>
required

Monitor identifier.

Response

Monitor status history retrieved successfully.

success
boolean
required

Whether the request succeeded.

Example:

true

monitor_id
string<uuid> | null
required

Monitor identifier. null on failure.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

total_statuses
integer | null
required

Total number of status entries in the history.

Example:

39

statuses
object[] | null
required

Full status history, ordered newest to oldest.

message
string | null

Optional message. null on success.