Skip to main content
GET
/
evaluations
/
monitors
List Monitors
curl --request GET \
  --url https://api.pandaprobe.com/evaluations/monitors \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "target_type": "<string>",
      "metric_names": [
        "<string>"
      ],
      "filters": {},
      "sampling_rate": 123,
      "model": "<string>",
      "cadence": "<string>",
      "only_if_changed": true,
      "status": "<string>",
      "last_run_at": "<string>",
      "last_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "next_run_at": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

status
enum<string> | null

Lifecycle status of an evaluation monitor.

Available options:
ACTIVE,
PAUSED
limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

items
MonitorResponse · object[]
required
total
integer
required
limit
integer
required
offset
integer
required