Skip to main content
GET
/
intelligence
/
investigations
/
{id}
/
alerts
Get Investigation Alerts
curl --request GET \
  --url http://api.gu1.ai/intelligence/investigations/{id}/alerts \
  --header 'Authorization: Bearer <token>'

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.

Overview

Retrieves all alerts associated with an investigation.

Path Parameters

id
string
required
Investigation ID

Query Parameters

category
string
Filter by alert category
sortBy
string
Sort by: createdAt, severity, riskContribution

Response

{
  "investigation": {
    "id": "inv-123",
    "name": "AML Investigation"
  },
  "alerts": [
    {
      "id": "alert-456",
      "name": "Suspicious Transaction",
      "severity": "HIGH",
      "riskContribution": 35,
      "consolidatedAt": "2024-12-23T10:00:00Z"
    }
  ],
  "summary": {
    "totalAlerts": 3,
    "categories": ["transaction_monitoring", "sanctions"],
    "highlightedAlerts": 1
  }
}

Example

curl -X GET http://api.gu1.ai/intelligence/investigations/inv-123/alerts \
  -H "Authorization: Bearer YOUR_API_KEY"