Skip to main content
GET
/
catchAll
/
monitors
/
{monitor_id}
/
jobs
List monitor jobs
curl --request GET \
  --url https://catchall.newscatcherapi.com/catchAll/monitors/{monitor_id}/jobs \
  --header 'x-api-key: <api-key>'
[
  {
    "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "start_date": "2023-11-07T05:31:56Z",
    "end_date": "2023-11-07T05:31:56Z",
    "status": "job_completed"
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication.

Path Parameters

monitor_id
string<uuid>
required

Monitor identifier.

Query Parameters

sort
enum<string>
default:asc

Sort by start_date (asc or desc).

Available options:
asc,
desc

Response

List of monitor jobs

job_id
string<uuid>

Unique identifier for this job execution.

start_date
string<date-time>

When the job started processing.

end_date
string<date-time>

When the job completed (null if still running).

status
string

Job status.

Example:

"job_completed"