> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/007_groups/002__get_group.md).

# Get Group

GraphQL endpoint: `/user`

Fetches a single group by id. The group's visibility settings determine who can view it, and `secretStorage` is only returned to members of the group.

## Query

```graphql
query ($id: ID!) {
  group(id: $id) {
    id
    name
    logoUrl
    visibility
    metadata
    secretStorage
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "group": {
      "id": "00000000-0000-4000-8000-000000000001",
      "logoUrl": "logo_url",
      "metadata": {
        "foo": "bar"
      },
      "name": "Acme",
      "secretStorage": {
        "key": "value"
      },
      "visibility": [
        "PUBLIC"
      ]
    }
  }
}
```
