# Get a single group

Retrieves a specific application group by its ID.

[endpoint]
base_url = "https://errors.betterstack.com"
path = "/api/v1/application-groups/{id}"
method = "GET"

[[path_param]]
name = "id"
description = "The ID of the application group to retrieve."
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns the requested application group.'''
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"
    }
  }
}'''

[[response]]
status = 401
description = '''Unauthorized'''
body = '''{
  "errors": "Invalid authentication"
}'''

[[response]]
status = 404
description = '''Not Found'''
body = '''{
  "errors": "Resource with the provided ID was not found"
}'''
[/responses]

#### Example cURL

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