# Groups
> Groups represent organizations using Increase. You can retrieve information about your own organization via the API. More commonly, OAuth platforms can retrieve information about the organizations that have granted them access. Learn more about OAuth [here](https://increase.com/documentation/oauth).

## The Group object
### Example
```json
{
  "created_at": "2020-01-31T23:59:59Z",
  "id": "group_1g4mhziu6kvrs3vz35um",
  "type": "group"
}
```
### Attributes
- `created_at` (string)
  The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Group was created.

- `id` (string)
  The Group identifier.

- `type` (string)
  A constant representing the object's type. For this resource it will always be `group`.

## Retrieve Group details
GET /groups/current
> Returns details for the currently authenticated Group.
### Example
```curl
curl \
  --url "${INCREASE_URL}/groups/current" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```