Get monitor status history
curl --request GET \
--url https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status \
--header 'x-api-key: <api-key>'import requests
url = "https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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
}
]
}{
"detail": "X-API-Key header is required for this endpoint"
}{
"detail": "Invalid API key"
}Monitors
Get monitor status history
Returns the full execution history of a monitor as a list of status entries, ordered from newest to oldest.
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>'import requests
url = "https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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
}
]
}{
"detail": "X-API-Key header is required for this endpoint"
}{
"detail": "Invalid API key"
}Authorizations
API key for authentication.
Path Parameters
Monitor identifier.
Response
Monitor status history retrieved successfully.
True if the request succeeded; false otherwise.
Example:
true
Monitor identifier. null on failure.
Example:
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Total number of status entries in the history.
Example:
39
Full status history, ordered newest to oldest.
Show child attributes
Show child attributes
Optional message. null on success.
Was this page helpful?
⌘I

