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

# Listar Investigações

> Lista investigações vinculadas a uma entidade no fluxo de gestão de casos gu1 — suporta filtro por status, responsável e data para equipes de compliance.

## Visão Geral

Recupera todas as investigações para uma entidade específica.

## Endpoint

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

## Parâmetros de Consulta

<ParamField query="entityId" type="string" required>
  ID da entidade para filtrar investigações
</ParamField>

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

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

## Resposta

```json theme={null}
{
  "success": true,
  "investigations": [
    {
      "id": "inv-123",
      "name": "Investigação AML",
      "investigationNumber": "INV-2024-001",
      "status": "IN_PROGRESS",
      "priority": "HIGH",
      "riskScore": 85,
      "alertCount": 3,
      "createdAt": "2024-12-23T10:00:00Z"
    }
  ],
  "count": 1
}
```

## Exemplo

```bash theme={null}
curl -X GET "http://api.gu1.ai/intelligence/investigations?entityId=entity-123&status=OPEN" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Veja Também

* [Atualizar Status da Investigação](/pt/api-reference/investigations/update-status)
* [Atribuir Investigação](/pt/api-reference/investigations/assign)
* [Listar Alertas](/pt/api-reference/alerts/list)
