> ## 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 Risk Matrix

> Get a specific risk matrix with its rules — using the gu1 risk scoring engine with configurable triggers, with examples for get use cases.

## Overview

Retrieves detailed information about a risk matrix including all associated rules.

## Path Parameters

<ParamField path="id" type="string" required>
  Risk Matrix ID
</ParamField>

## Response

```json theme={null}
{
  "riskMatrix": {
    "id": "rm-123",
    "name": "AML Risk Matrix",
    "category": "aml",
    "status": "active",
    "triggers": [],
    "scoringConfig": {}
  },
  "rules": [
    {
      "id": "rule-456",
      "riskMatrixId": "rm-123",
      "name": "PEP Detection",
      "description": "Detect politically exposed persons",
      "status": "active",
      "priority": 100,
      "conditions": {},
      "actions": [],
      "createdAt": "2024-01-15T10:00:00Z"
    }
  ],
  "ruleCount": 1
}
```

## Example

```bash theme={null}
curl -X GET http://api.gu1.ai/risk-matrices/rm-123 \
  -H "Authorization: Bearer YOUR_API_KEY"
```
