Jump to
Ctrl
+
/

Screen Transaction

GET
/aml/transactions/{blockchain}/{transactionHash}

Screen a transaction against AML data. Returns whether the transaction is flagged, its risk score/band, and the flagged participant addresses with their roles, scores, severities and categories.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g. ethereum, ethereum-classic, binance-smart-chain.

transactionHash string Required

String identifier (hash) of the transaction to screen against AML data

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-12-12
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
item object Required
isFlagged boolean Optional

Whether any participant in the transaction is AML-flagged

true
riskBand string Optional

Risk band derived from the highest score: low, medium, high, or severe

severe
riskScore integer Optional

Highest AML risk score across the transaction's participants (0 = no risk, 100 = severe)

87
flaggedAddresses array Items (object) Optional

Participants of the transaction that are AML-flagged

address string Optional

The flagged participant address

0x7f367cc41522ce07553e823bf3be79a889debe1b
categories array Items (string) Optional
highestSeverity string Optional

Highest severity across the address's AML sources (critical, high, medium, low, info)

critical
riskBand string Optional

Risk band for this address: low, medium, high, or severe

severe
riskScore integer Optional

AML risk score for this address (0-100)

87
role string Optional

Role in the transaction: sender, recipient, token_sender, or token_recipient

recipient

Credits Cost : 500000 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "isFlagged": true,
            "riskBand": "severe",
            "riskScore": 87,
            "flaggedAddresses": [
                {
                    "address": "0x7f367cc41522ce07553e823bf3be79a889debe1b",
                    "categories": [
                        "sanctions"
                    ],
                    "highestSeverity": "critical",
                    "riskBand": "severe",
                    "riskScore": 87,
                    "role": "recipient"
                }
            ]
        }
    }
}