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

# GET/AML/Report

> This API provides a detailed report of a specific AML screening result in PDF format. Each report is identified by a unique `resourceId`.

<Warning>
  **Notes**

  * The `resourceId` can be obtained through the `GET/submission` API.
  * Multiple `resourceId`s may exist for a single submission (in case of multiple matches).
  * The `resourceId` is only generated when the AML screening result is `'Red Flag'`.
</Warning>

<Info>
  **AML Screening Result Codes**: For detailed information about `Red Flag` and risk levels, refer to the [AML Database Sources and Codes](/dashboard/en/aml-source) documentation.
</Info>

## 1. Endpoint

```text GET/Report/AML theme={null}
GET https://rest-api.argosidentity.com/v3/report/aml
```

## 2. Authentication

Include the API key in the x-api-key header:

```text x-api-key theme={null}
x-api-key: {yourAPIKey}
```

## 3. Request Parameter

<ResponseField name="resourceId" type="string" required="true">
  Unique identifier for the selected AML screening result.
</ResponseField>

## 4. Request Example

```curl GET/Report/AML theme={null}
curl --location --request GET 'https://rest-api.argosidentity.com/v3/report/aml?resourceId={resourceId}' \
--header 'x-api-key: {yourAPIKey}'
```

## 5. Response

A successful request will return the AML report in PDF format:

* Initial File Name: report.pdf
* Content Type: application/pdf

This API allows for efficient retrieval and downloading of detailed AML screening result reports.
