List event monitors
curl --request GET \
--url https://catchall.newscatcherapi.com/catchAll/monitors \
--header 'x-api-key: <api-key>'import requests
url = "https://catchall.newscatcherapi.com/catchAll/monitors"
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', 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",
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"
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")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://catchall.newscatcherapi.com/catchAll/monitors")
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{
"total": 3,
"page": 1,
"page_size": 100,
"total_pages": 1,
"monitors": [
{
"monitor_id": "7f3a8b2c-1e4d-4a5b-9c8d-6e7f8a9b0c1d",
"reference_job_id": "5f0c9087-85cb-4917-b3c7-e5a5eff73a0c",
"reference_job_query": "Series B funding rounds for SaaS startups",
"enabled": true,
"schedule": "0 12 * * *",
"schedule_human_readable": "Every day at 12 PM",
"timezone": "UTC",
"created_at": "2026-02-24T14:00:00Z",
"webhook": {
"url": "https://example.com/webhook",
"method": "POST"
},
"user_key": "***...a1b2"
}
]
}{
"detail": "X-API-Key header is required for this endpoint"
}{
"detail": "Invalid API key"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Event Monitors
List event monitors
Returns all event monitors created by the authenticated user.
GET
/
catchAll
/
monitors
List event monitors
curl --request GET \
--url https://catchall.newscatcherapi.com/catchAll/monitors \
--header 'x-api-key: <api-key>'import requests
url = "https://catchall.newscatcherapi.com/catchAll/monitors"
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', 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",
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"
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")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://catchall.newscatcherapi.com/catchAll/monitors")
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{
"total": 3,
"page": 1,
"page_size": 100,
"total_pages": 1,
"monitors": [
{
"monitor_id": "7f3a8b2c-1e4d-4a5b-9c8d-6e7f8a9b0c1d",
"reference_job_id": "5f0c9087-85cb-4917-b3c7-e5a5eff73a0c",
"reference_job_query": "Series B funding rounds for SaaS startups",
"enabled": true,
"schedule": "0 12 * * *",
"schedule_human_readable": "Every day at 12 PM",
"timezone": "UTC",
"created_at": "2026-02-24T14:00:00Z",
"webhook": {
"url": "https://example.com/webhook",
"method": "POST"
},
"user_key": "***...a1b2"
}
]
}{
"detail": "X-API-Key header is required for this endpoint"
}{
"detail": "Invalid API key"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
API key for authentication.
Query Parameters
Page number to retrieve.
Required range:
x >= 1Number of records per page.
Required range:
1 <= x <= 1000Filter results by text (case-insensitive substring match).
Controls which resources are returned based on ownership.
all: Returns resources owned by the user and resources shared with them (default, backward compatible).own: Returns only resources created by the authenticated user.shared: Returns only resources shared with the user by others.
Available options:
all, own, shared Filter results to resources belonging to this project.
Response
List of user event monitors
Total number of event monitors for this user.
Example:
3
Current page number.
Example:
1
Number of event monitors per page.
Example:
100
Total number of pages available.
Example:
1
Array of event monitor summaries.
Show child attributes
Show child attributes
Was this page helpful?

