> 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/013_notifications/003__get_unread_notification_count_as_user.md).

# Get Unread Notification Count (User)

GraphQL endpoint: `/user`

Returns the number of the calling user's notifications that are still unread.

## Query

```graphql
query {
  unreadNotificationCount
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "unreadNotificationCount": 3
  }
}
```
