> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unstructured.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get notifications unread count

> Get count of unread notification events for the current user.

## Query parameters

<ParamField query="workflow_id" type="string">
  Filter unread count to a specific workflow.
</ParamField>

## Response

<ResponseField name="unread_count" type="integer" required>
  Number of unread notification events.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url "${UNSTRUCTURED_API_URL}/api/v1/notifications/unread-count" \
    --header "unstructured-api-key: ${UNSTRUCTURED_API_KEY}"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "unread_count": 5
  }
  ```
</ResponseExample>
