v2
latestOpenAPI 3.0.02026-07-261859071.2 MBList all check groups
Lists all current check groups in your account. The "checks" property is an array of check UUID's for convenient referencing. It is read only and you cannot use it to add checks to a group.
Query parameters
Limit the number of results
Limit the number of results
Page number
Page number
Filters check groups by tags. Returns check groups that have at least one of the specified tags.
Filters check groups by tags. Returns check groups that have at least one of the specified tags.
Filters check groups by exact name match. Accepts one or more names and returns groups that match any of the specified names.
Filters check groups by exact name match. Accepts one or more names and returns groups that match any of the specified names.
Headers
Your Checkly account ID, you can find it at https://app.checklyhq.com/settings/account/general
Your Checkly account ID, you can find it at https://app.checklyhq.com/settings/account/general
Response
Successful
Example response
[
{
"id": 1,
"name": "Check group",
"tags": [
"production"
],
"locations": [
"us-east-1",
"eu-central-1"
],
"apiCheckDefaults": {
"url": "https://api.example.com/v1",
"headers": [
{
"key": "Cache-Control",
"value": "no-store"
}
],
"queryParameters": [
{
"key": "Page",
"value": "1"
}
],
"assertions": [
{
"source": "STATUS_CODE",
"comparison": "NOT_EMPTY",
"target": "200"
}
],
"basicAuth": {
"username": "admin",
"password": "abc12345"
}
},
"environmentVariables": [
{
"key": "API_KEY"
}
],
"privateLocations": [
"data-center-eu"
]
}
]