GET
https://uptime.betterstack.com/api/v2/status-page-groups
Headers
Authorization
required
string
Bearer $TOKEN
Returns a list of all your status page groups. This endpoint supports pagination.
Headers
Bearer $TOKEN
Returns a list of existing status page groups.
Response body
{
"data": [
{
"id": "1372854",
"type": "status_page_group",
"attributes": {
"name": "Testing group",
"created_at": "2024-11-07T11:33:24.408Z",
"updated_at": "2024-11-07T11:33:24.408Z",
"sort_index": null
}
},
{
"id": "1372963",
"type": "status_page_group",
"attributes": {
"name": "Testing group 2",
"created_at": "2024-11-07T12:40:52.278Z",
"updated_at": "2024-11-07T12:40:52.278Z",
"sort_index": null
}
},
{
"id": "1372965",
"type": "status_page_group",
"attributes": {
"name": "Testing group 3",
"created_at": "2024-11-07T12:42:52.369Z",
"updated_at": "2024-11-07T12:42:52.369Z",
"sort_index": null
}
}
],
"pagination": {
"first": "https://uptime.betterstack.com/api/v2/status-page-groups?page=1",
"last": "https://uptime.betterstack.com/api/v2/status-page-groups?page=1",
"prev": null,
"next": null
}
}
curl --request GET \
--url https://uptime.betterstack.com/api/v2/status-page-groups \
--header "Authorization: Bearer $TOKEN"