Skip to main content
GET
http://api.gu1.ai
/
intelligence
/
investigations
List Investigations
curl --request GET \
  --url http://api.gu1.ai/intelligence/investigations \
  --header 'Authorization: Bearer <token>'

Overview

Retrieves all investigations for a specific entity.

Endpoint

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

Query Parameters

entityId
string
required
Entity ID to filter investigations
status
string
Filter by status: OPEN, IN_PROGRESS, PENDING_REVIEW, CLOSED
priority
string
Filter by priority: LOW, MEDIUM, HIGH, CRITICAL

Response

{
  "success": true,
  "investigations": [
    {
      "id": "inv-123",
      "name": "AML Investigation",
      "investigationNumber": "INV-2024-001",
      "status": "IN_PROGRESS",
      "priority": "HIGH",
      "riskScore": 85,
      "alertCount": 3,
      "createdAt": "2024-12-23T10:00:00Z"
    }
  ],
  "count": 1
}

Example

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

See Also