> ## Documentation Index
> Fetch the complete documentation index at: https://developer.verilock.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get AML Result

> Retrieve the full details of an AML screening result by its ID.

## Path Parameters

<ParamField path="id" type="string" required>
  The AML screening ID (e.g. `aml_8f3a9b2e-...`)
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET \
    "https://verilock.io/api/v1/aml/screen/aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b" \
    -H "Authorization: Bearer qi_live_your_api_key_here" \
    -H "Accept: application/json"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b",
    "status": "completed",
    "query": {
      "name": "John Doe",
      "date_of_birth": "1985-03-15",
      "nationality": "US"
    },
    "matches": [
      {
        "name": "John M. Doe",
        "score": 0.87,
        "lists": ["OFAC SDN", "EU Sanctions"],
        "entity_type": "individual",
        "details": {
          "aka": ["J. Doe", "Jonathan Doe"],
          "country": "US",
          "date_of_birth": "1985-03-15",
          "programs": ["SDGT"],
          "source_url": "https://sanctionssearch.ofac.treas.gov/"
        }
      },
      {
        "name": "John Doe",
        "score": 0.72,
        "lists": ["PEP Database"],
        "entity_type": "individual",
        "details": {
          "position": "Former Deputy Minister",
          "country": "US",
          "active": false
        }
      }
    ],
    "risk_level": "high",
    "screened_at": "2026-03-15T10:30:00Z"
  }
  ```
</ResponseExample>
