List all groups

Lists all application groups for your team.

GET https://errors.betterstack.com/api/v1/application-groups

Query parameters

page
integer
per_page
integer

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "5678",
      "type": "application_group",
      "attributes": {
        "name": "production-apps",
        "created_at": "2025-01-15T10:25:00.000Z",
        "updated_at": "2025-01-15T10:25:00.000Z",
        "sort_index": null,
        "team_name": "example-team"
      }
    }
  ],
  "pagination": {
    "first": "https://errors.betterstack.com/api/v1/application-groups?page=1&per_page=50",
    "last": "https://errors.betterstack.com/api/v1/application-groups?page=1&per_page=50",
    "prev": null,
    "next": null
  }
}
401

Response body

{
  "errors": "Invalid authentication"
}

Example cURL

Example
curl --request GET \
  --url https://errors.betterstack.com/api/v1/application-groups \
  --header "Authorization: Bearer $TOKEN"

Pagination

This endpoint supports pagination. Default is 50 items per page, with a maximum of 100 items per page. The pagination links are provided in the pagination object within the response body.