Jump to
Ctrl
+
/

Verify Address

GET
/aml/addresses/{address}

Check if an address is flagged or associated with fraud.


While we will be taking reasonable measures to keep our address verification data accurate, we do not guarantee the completeness, reliability or timeliness of the results provided.

Path Parameters

address string Required

The blockchain address to verify against AML databases

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
blockchain string Optional

The blockchain of the address

tron
categories array Items (string) Optional
isFlagged boolean Required

Whether the address has AML flags

true
severity object Optional

List of AML sources that flagged this address

sources array Items (object) Optional

List of AML sources that flagged this address

categories array Items (string) Optional
label string Optional

Label related to the address sanctions from this source

United Fraud Nation LTD
listingTimestamp integer Required

When this source listed the address

1775594269
provider string Required

Categories from this specific source

ofac_sdn
sanctionPrograms array Items (string) Optional

Credits Cost : 612244 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "blockchain": "tron",
            "categories": [
                "sanctions"
            ],
            "isFlagged": true,
            "severity": "critical",
            "sources": [
                {
                    "categories": [
                        "sanctions"
                    ],
                    "label": "United Fraud Nation LTD",
                    "listingTimestamp": 1775594269,
                    "provider": "ofac_sdn",
                    "sanctionPrograms": [
                        "CYBER2"
                    ]
                }
            ]
        }
    }
}