Skip to main content
GET
/
runs
List Runs
curl --request GET \
  --url https://hub.griff.services/runs/ \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "monitorId": "<string>",
      "executionGroupId": "<string>",
      "location": "<string>",
      "environment": "<string>",
      "status": "pending",
      "triggeredBy": "schedule",
      "startedAt": "2023-11-07T05:31:56Z",
      "monitor": {
        "id": "<string>",
        "name": "<string>",
        "version": "<string>",
        "frequency": {
          "every": 123,
          "unit": "MINUTE"
        },
        "locations": [
          "<string>"
        ]
      },
      "completedAt": "2023-11-07T05:31:56Z",
      "duration_ms": 123,
      "success": true,
      "errors": [
        "<string>"
      ]
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

monitorId
string
status
enum<string>
Available options:
pending,
running,
completed,
failed
limit
number
Required range: 1 <= x <= 100
offset
number
Required range: x >= 0

Response

Default Response

data
object[]
required
total
number
required
page
number
required
limit
number
required