> ## 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.

# Obter Caixa de Entrada de Inteligência

> Obter caixa de entrada agregada com casos e alertas — usando a API de alertas da gu1 para fluxos de risco e compliance, com exemplos para inbox.

## Visão Geral

Recupera a caixa de entrada de inteligência com casos e alertas agrupados por status e prioridade.

## Endpoint

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

## Parâmetros de Consulta

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

<ParamField query="priority" type="string">
  Filtrar por prioridade: LOW, MEDIUM, HIGH, CRITICAL
</ParamField>

<ParamField query="assignedTo" type="string">
  Filtrar por ID de usuário/equipe atribuído
</ParamField>

<ParamField query="limit" type="number" default="50">
  Resultados por página (1-100)
</ParamField>

<ParamField query="offset" type="number" default="0">
  Deslocamento de paginação
</ParamField>

## Resposta

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

## Veja Também

* [Listar Alertas](/pt/api-reference/alerts/list)
* [Listar Investigações](/pt/api-reference/investigations/list)
