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

# Get Intelligence Inbox

> Get aggregated inbox with cases and alerts — using the gu1 alerts API for risk and compliance workflows, with examples for inbox use cases.

## Overview

Retrieves intelligence inbox with cases and alerts grouped by status and priority.

## Endpoint

```
GET http://api.gu1.ai/intelligence/inbox
```

## Query Parameters

<ParamField query="status" type="string">
  Filter by status: OPEN, IN\_PROGRESS, PENDING\_REVIEW, CLOSED, ESCALATED
</ParamField>

<ParamField query="priority" type="string">
  Filter by priority: LOW, MEDIUM, HIGH, CRITICAL
</ParamField>

<ParamField query="assignedTo" type="string">
  Filter by assigned user/team ID
</ParamField>

<ParamField query="limit" type="number" default="50">
  Results per page (1-100)
</ParamField>

<ParamField query="offset" type="number" default="0">
  Pagination offset
</ParamField>

## Response

```json theme={null}
{
  "summary": {
    "totalCases": 45,
    "totalAlerts": 128,
    "byStatus": {
      "OPEN": {
        "count": 12,
        "byPriority": {
          "CRITICAL": 3,
          "HIGH": 5,
          "MEDIUM": 4
        }
      }
    }
  },
  "cases": [],
  "alerts": []
}
```

## See Also

* [List Alerts](/en/api-reference/alerts/list)
* [List Investigations](/en/api-reference/investigations/list)
