Standard

API Format

Base URL

API

URLRequest MethodsContent-TypeOutput FormatCharacter Set
api-base-url?
partner_code=xxx&partner_key=xxx
POSTapplication/jsonJSONUTF-8

Example: https://sg.apitd.net/verification/persona/aml/standard/v1?partner_code=test_code∂ner_key=test_key

Authentication

ParameterTypeDescriptionRequired/OptionalNotes
partner_codeStringPartner Coderequiredassigned by TD
partner_keyStringPartner Keyrequiredassigned by TD

Request

ParameterTypeDescriptionRequiredNotes
nameStringEntity Nameyes

Min: 2 characters
Max: 100 characters

Constraint: The name cannot consist entirely of special characters or numbers.

entity_typeArrayEntity Typeyes

Entity types to be screened

Enumeration:
person
company
organization
crypto_wallet
vessel
aircraft

category_listArrayScreening List Categoryyes

Filter results by screening list category

Enumeration: professional_integrity
regulatory_enforcement
sanctions
pep
sip
sie
insolvency

For screening list category definitions, see Appendix - category_list

country_listArrayCountryoptional

Filter results by country;

See Appendix for country codes;
Example: [“CA”、“IN”]

birth_incorporation_dateStringBirth/Incorporation Dateoptional

Date of birth for an individual, or incorporation date for a company/organization;

Filter results by date;
Format: DD-MM-YYYY
Example: 10-03-1947 | 10-03-0000
| 00-03-1947 | 00-00-1947

unique_identifierStringUnique Identifieroptional

Includes passport number, national ID number, driver's license number, company/organization registration number, etc.;

Min: 2 characters
Max: 50 characters
Constraint: The unique identifier cannot consist entirely of special characters;
Example: EA1234567

match_scoreIntegerMatch Scoreoptional

Similarity threshold between the search term and matched term;
The input value should be an integer.

Default: 80
0: Loosest match
100: Strictest match
Range: 0-100

A higher value means stricter matching criteria;
For exact matching, set the score to 100.

alias_searchBooleanAlias Searchoptional

Whether to match both the entity's primary name and known aliases

Note: The default value is true.

rca_searchBooleanRCA Searchoptional

Whether to retrieve relatives and close associates of politically exposed persons

RCA (Relatives and Close Associates):
Refers to relatives and close associates of politically exposed persons,
including spouses, parents, children, siblings, etc.

Note: The default value is true.

Request Example

{
  "name": "David Beckham",
  "category_list": [
    "sanctions",
    "pep",
    "sip"
  ],
  "entity_type": ["person"],
  "country_list": [],
  "birth_incorporation_date":"",
  "unique_identifier": "",
  "match_score": 100,
  "alias_search": true,
  "rca_search": true
}

Response Parameter

ParameterTypeDescriptionNotes
codeIntegerAPI Status Code
messageStringStatus MessageSpecific abnormal reasons will be provided if the API is abnormal
sequence_idStringUnique ID of ResponseA unique ID used to mark each request
dataObjectResponse Data BodySee data response parameters

data

ParameterTypeDescriptionNotes
searched_nameStringSearched Name
total_recordsIntegerTotal RecordsNumber of records found
match_statusStringMatch StatusMatching status;
"Potential Match" indicates that the searched case is a potential match
case_statusStringCase StatusIndicates the overall result of the AML search case,
Case results are usually: Passed, Failed, or For Review,
Determined by the AML case search result
resultsArrayResultsArray of result objects;
Each object contains detailed information about the case;
See data.result response parameters

data.result

ParameterTypeDescriptionNotes
birth_incorporation_dateArrayBirth/Incorporation Date
category_listArrayScreening List Category
country_listArrayCountry
dataObjectDetailed DataSee data.result.data response parameters.
entity_typeArrayEntity Type
matched_namesArrayMatched NamesSee matched_names response parameters.
nameStringEntity NameEntity Name
risk_decisionStringRisk DecisionRisk decision result of the entity
risk_levelStringRisk LevelRisk level of the entity
risk_scoreIntegerRisk ScoreRisk score of the entity

data.result.data

ParameterTypeDescriptionNotes
sanction_detailsArraySanction DetailsSee sanction_details response parameters.
case_detailsArrayCase DetailsSee case_details response parameters.
crypto_walletsArrayCrypto WalletsSee crypto_wallets response parameters.
summaryObjectSummary InformationSee summary response parameters.

sanction_details

ParameterTypeDescriptionNotes
sanction_programArraySanction Program
sanction_typeArraySanction Type
reasonArraySanction Reason
sanction_sourceArraySanction Source
sanctioning_authorityArraySanctioning Authority
statusArrayCurrent Sanction Status

case_details

ParameterTypeDescriptionNotes
authorityArrayAuthority
case_statusArrayCurrent Case Status
descriptionArrayCase Description
reference_linkArrayCase Reference Link

crypto_wallets

ParameterTypeDescriptionNotes
crypto_wallet_addressArrayCrypto Wallet Address
currencyArrayCryptocurrency Type
balanceArrayWallet Balance
amount_usdArrayUSD Equivalent Amount

summary

ParameterTypeDescriptionNotes
nameArraySubject Name
category_listArrayRisk List Category
aliasArrayPrevious Names/Aliases
source_urlArrayOriginal Source URL
occupationArrayCurrent or Previous Occupation
political_partyArrayPolitical Party
date_of_birthArrayDate of Birth
nationalityArrayNationality
descriptionArraySubject Comprehensive Description
positionArrayPosition
image_urlArrayProfile or Subject Avatar URL

matched_names

ParameterTypeDescriptionNotes
record_idStringRecord ID
matched_nameStringMatched Name
scoreStringMatch Score
matching_fieldsObjectMatching Field DetailsSee matching_fields response parameters.

matching_fields

ParameterTypeDescriptionNotes
exact_matchBooleanExact MatchMatching status of the searched entity record.
aliasBooleanAlias Match
birth_incorporation_dateBooleanBirth Date Match

API Status Code

CodeDescription
200Success
301Service not purchased
302Traffic blocked
303Traffic insufficient
304Service expired
305Daily maximum volume reached
600Rate limited
9600System error
9606Illegal parameter

Response Example

{
    "code": 200,
    "data": {
        "searched_name": "David Beckham",
        "case_status": "Failed",
        "total_records": 13,
        "match_status": "Potential Match",
        "results": [
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "6D72BZ3jBC2q7mYcLLWp9R",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    },
                    {
                        "record_id": "SMWb6gykjxgVhnAtf75VGG",
                        "score": 100,
                        "matched_name": "ديفيد بيكهام",
                        "matching_fields": {
                            "exact_match": false,
                            "birth_incorporation_date": false,
                            "alias": false
                        }
                    },
                    {
                        "record_id": "kRsVZqdMqUzBqa4ByjxhXw",
                        "score": 100,
                        "matched_name": "ديفيد بيكهام",
                        "matching_fields": {
                            "exact_match": false,
                            "birth_incorporation_date": false,
                            "alias": true
                        }
                    },
                    {
                        "record_id": "RnAxVZgYwD2W3YNXBDmMSQ",
                        "score": 100,
                        "matched_name": "ديفيد بيكهام",
                        "matching_fields": {
                            "exact_match": false,
                            "birth_incorporation_date": false,
                            "alias": true
                        }
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "1975-05-02"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "1975-05-02"
                        ],
                        "name": [
                            "David Beckham",
                            "ديفيد بيكهام",
                            "Девід Бекхем",
                            "Devid Bekhem"
                        ],
                        "alias": [
                            "데이비드 로버트 조지프 베컴",
                            "David J. Beckham",
                            "Бекхэм, Дэвид",
                            "Sir David Robert Joseph Beckham",
                            "דיוויד רוברט ג'וסף בקהאם",
                            "David Robert Joseph Beckham",
                            "Sir David Beckham",
                            "Девід Бекгем",
                            "Дэвід Бекхэм",
                            "დევიდ ბექჰემი",
                            "ဒေးဗစ်ဘက်ခ်ဟမ်",
                            "ডেভিড বেকহ্যাম",
                            "डेविड बेखम",
                            "Դևիդ Բեքհեմ",
                            "Дейвид Бекъм",
                            "David Beckham",
                            "Devid Bekhem",
                            "ដេវីដ បេកខាំ",
                            "ಡೇವಿಡ್ ಬೆಕ್ಹ್ಯಾಮ್",
                            "דייוויד בקהאם",
                            "Ντέιβιντ Μπέκαμ",
                            "ديفد بيكام",
                            "데이비드 베컴",
                            "Deivids Bekhems",
                            "ڈیوڈ بیکہم",
                            "Дэвид Бекҳэм",
                            "Девід Бекхем",
                            "دیوید بکهام",
                            "Дэвид Бекхэм",
                            "ديفيد بيكهام",
                            "デビッド・ベッカム",
                            "डेभिड बेक्ह्याम",
                            "大卫·贝克汉姆",
                            "Дејвид Бекам"
                        ],
                        "position": [
                            "UNICEF Goodwill Ambassador (2005-)"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "David Beckham",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "mJ46PWXp8isM6RUbC8SYCh",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "1999-03-04"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "1999-03-04"
                        ],
                        "name": [
                            "Brooklyn Peltz Beckham"
                        ],
                        "alias": [
                            "브루클린 베컴",
                            "Brooklyn Beckham",
                            "Μπρούκλιν Μπέκαμ",
                            "Бруклін Бекхем",
                            "بروكلين بيكخام",
                            "ブルックリン・ベッカム",
                            "ברוקלין בקהאם",
                            "Բրուքլին Բեքհեմ",
                            "بروکلین بیکہم",
                            "Бруклин Бекхэм",
                            "Brooklyn Peltz Beckham",
                            "布魯克林·貝克漢",
                            "بروکلین بکهام",
                            "بروكلين بيكهام",
                            "Modelo británico",
                            "Brooklyn Joseph Beckham",
                            "Brooklyn Joseph Peltz Beckham",
                            "ברוקלין ג'וסף בקהאם",
                            "Brooklyn Joseph Peltz-Beckham",
                            "Son of Beckham",
                            "브루클린 조지프 베컴"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Brooklyn Peltz Beckham",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "68EUaDj84rMGe86eCrW3Fv",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "1999-03-04"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "1999-03-04"
                        ],
                        "name": [
                            "Brooklyn Beckham"
                        ],
                        "alias": [
                            "Brooklyn Beckham",
                            "브루클린 베컴",
                            "ברוקלין בקהאם",
                            "布魯克林·貝克漢",
                            "بروکلین بکهام",
                            "Μπρούκλιν Μπέκαμ",
                            "بروکلین بیکہم",
                            "بروكلين بيكخام",
                            "بروكلين بيكهام",
                            "Բրուքլին Բեքհեմ",
                            "Бруклин Бекхэм",
                            "Бруклін Бекхем",
                            "ブルックリン・ベッカム",
                            "Brooklyn Peltz Beckham",
                            "Brooklyn Joseph Peltz-Beckham",
                            "Son of Beckham",
                            "ברוקלין ג'וסף בקהאם",
                            "Modelo británico",
                            "Brooklyn Joseph Peltz Beckham",
                            "Brooklyn Joseph Beckham",
                            "브루클린 조지프 베컴"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Brooklyn Beckham",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "h9u6dNKMqGQcEWdpdu25ky",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "2002-09-01"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "2002-09-01"
                        ],
                        "name": [
                            "Romeo Beckham"
                        ],
                        "alias": [
                            "로미오 베컴",
                            "رومیو بیکہم",
                            "Ρομέο Μπέκαμ",
                            "رومئو بکام",
                            "روميو بيكهام",
                            "Ромео Бекхем",
                            "羅密歐·碧咸",
                            "ロメオ・ベッカム",
                            "Ромео Бекхэм",
                            "Romeo Beckham",
                            "ရိုမီယို ဘက်ခမ်း",
                            "로미오 제임스 베컴",
                            "Romeo James Beckham"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Romeo Beckham",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "HuDeYZC3nLdAipCW44oKw8",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "2011-07-10"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "2011-07-10"
                        ],
                        "name": [
                            "Harper Beckham"
                        ],
                        "alias": [
                            "Harper Seven Beckham",
                            "하퍼 세븐 베컴",
                            "Гарпер Бекгем",
                            "Χάρπερ Μπέκαμ",
                            "Гарпер Бекем",
                            "ہارپر بیکہم",
                            "Harper Beckham",
                            "하퍼 베컴"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Harper Beckham",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "7tQGXsCd77h5Bvt5bFNcWK",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "2011-07-10"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "2011-07-10"
                        ],
                        "name": [
                            "Гарпер Бекем"
                        ],
                        "alias": [
                            "Гарпер Бекгем",
                            "하퍼 세븐 베컴",
                            "Harper Seven Beckham",
                            "하퍼 베컴",
                            "Гарпер Бекем",
                            "Harper Beckham",
                            "Χάρπερ Μπέκαμ",
                            "ہارپر بیکہم"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Гарпер Бекем",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "7PHACEvmFAgBR33jp9AiHc",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "1974-04-17"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "1974-04-17"
                        ],
                        "name": [
                            "Victoria Beckham"
                        ],
                        "alias": [
                            "ויקטוריה אדאמס",
                            "פוש ספייס",
                            "Victoria Caroline, Lady Beckham",
                            "ויקטוריה קרוליין אדאמס",
                            "Бекхэм, Виктория",
                            "Posh Spice",
                            "Victoria Beckham-Adams",
                            "Вікторія Бекхем",
                            "빅토리아 애덤스",
                            "Адамс, Виктория",
                            "빅토리아 캐럴라인 애덤스",
                            "Victoria Caroline Adams",
                            "Виктория Адамс",
                            "Victoria Caroline Beckham",
                            "Վիկտորյա Կերոլայն Բեքհեմ",
                            "Victoria Adams",
                            "Вікторія Бекем",
                            "وکٹوریہ بیکہم",
                            "Victoria Beckham",
                            "विक्टोरिया बेखम",
                            "Victoria Beckhamová",
                            "Вікторыя Бекхэм",
                            "ভিক্টোরিয়া বেকহ্যাম",
                            "فيكتوريا بيكام",
                            "ויקטוריה בקהאם",
                            "빅토리아 베컴",
                            "ویکتوریا بکهام",
                            "Viktorija Bekhema",
                            "Βικτόρια Μπέκαμ",
                            "Викторија Бекам",
                            "Виктория Бекъм",
                            "Վիկտորիա Բեքհեմ",
                            "ヴィクトリア・ベッカム",
                            "Виктория Бекхэм",
                            "ვიქტორია ბეკჰემი",
                            "维多利亚·贝克汉姆",
                            "Вікторія Бекгем",
                            "فيكتوريا بيكهام",
                            "Viktoriya Bekhem"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Victoria Beckham",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "AzhxXCn38cmk3peNh9D4mX",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "2005-02-20"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "2005-02-20"
                        ],
                        "name": [
                            "Cruz Beckham"
                        ],
                        "alias": [
                            "Cruz David Beckham",
                            "Cruz Beckham",
                            "کروز بیکہم",
                            "Κρουζ Μπέκαμ"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Cruz Beckham",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "hCnxbk85sBT6fDPQV7BAeX",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "1974-04-17"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "1974-04-17"
                        ],
                        "name": [
                            "فيكتوريا بيكام"
                        ],
                        "alias": [
                            "ויקטוריה אדאמס",
                            "Виктория Адамс",
                            "Бекхэм, Виктория",
                            "Victoria Caroline, Lady Beckham",
                            "Адамс, Виктория",
                            "빅토리아 캐럴라인 애덤스",
                            "Victoria Caroline Adams",
                            "빅토리아 애덤스",
                            "Victoria Beckham-Adams",
                            "Вікторія Бекхем",
                            "Վիկտորյա Կերոլայն Բեքհեմ",
                            "Victoria Caroline Beckham",
                            "Victoria Adams",
                            "Posh Spice",
                            "Вікторія Бекем",
                            "ויקטוריה קרוליין אדאמס",
                            "פוש ספייס",
                            "Viktorija Bekhema",
                            "Вікторія Бекгем",
                            "Victoria Beckhamová",
                            "Victoria Beckham",
                            "ויקטוריה בקהאם",
                            "빅토리아 베컴",
                            "Виктория Бекхэм",
                            "Виктория Бекъм",
                            "विक्टोरिया बेखम",
                            "Վիկտորիա Բեքհեմ",
                            "Viktoriya Bekhem",
                            "Викторија Бекам",
                            "ویکتوریا بکهام",
                            "فيكتوريا بيكهام",
                            "ভিক্টোরিয়া বেকহ্যাম",
                            "ヴィクトリア・ベッカム",
                            "维多利亚·贝克汉姆",
                            "ვიქტორია ბეკჰემი",
                            "وکٹوریہ بیکہم",
                            "Вікторыя Бекхэм",
                            "فيكتوريا بيكام",
                            "Βικτόρια Μπέκαμ"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "فيكتوريا بيكام",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "j5YKPa8fwrftJoq5YgepA9",
                        "score": 100,
                        "matched_name": "David Beckham",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "2005-02-20"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "2005-02-20"
                        ],
                        "name": [
                            "کروز بیکہم"
                        ],
                        "alias": [
                            "Cruz David Beckham",
                            "Κρουζ Μπέκαμ",
                            "Cruz Beckham",
                            "کروز بیکہم"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "کروز بیکہم",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "ERkM7GW8xPCTSjNNnCsHXz",
                        "score": 100,
                        "matched_name": "ديفيد بيكهام",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "1974-04-17"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "1974-04-17"
                        ],
                        "name": [
                            "Виктория Бекхэм"
                        ],
                        "alias": [
                            "Victoria Caroline, Lady Beckham",
                            "ויקטוריה קרוליין אדאמס",
                            "Վիկտորյա Կերոլայն Բեքհեմ",
                            "Виктория Адамс",
                            "Posh Spice",
                            "Victoria Adams",
                            "Вікторія Бекхем",
                            "빅토리아 캐럴라인 애덤스",
                            "빅토리아 애덤스",
                            "Бекхэм, Виктория",
                            "Victoria Beckham-Adams",
                            "Victoria Caroline Adams",
                            "פוש ספייס",
                            "ויקטוריה אדאמס",
                            "Victoria Caroline Beckham",
                            "Адамс, Виктория",
                            "Вікторія Бекем",
                            "ვიქტორია ბეკჰემი",
                            "Викторија Бекам",
                            "ヴィクトリア・ベッカム",
                            "ویکتوریا بکهام",
                            "Viktorija Bekhema",
                            "Viktoriya Bekhem",
                            "विक्टोरिया बेखम",
                            "Вікторыя Бекхэм",
                            "فيكتوريا بيكام",
                            "Виктория Бекъм",
                            "빅토리아 베컴",
                            "Виктория Бекхэм",
                            "维多利亚·贝克汉姆",
                            "ויקטוריה בקהאם",
                            "ভিক্টোরিয়া বেকহ্যাম",
                            "وکٹوریہ بیکہم",
                            "Victoria Beckham",
                            "Victoria Beckhamová",
                            "Βικτόρια Μπέκαμ",
                            "فيكتوريا بيكهام",
                            "Вікторія Бекгем",
                            "Վիկտորիա Բեքհեմ"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Виктория Бекхэм",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "R3wvbg6s57yACASd3LRapq",
                        "score": 100,
                        "matched_name": "ديفيد بيكهام",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "1974-04-17"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "1974-04-17"
                        ],
                        "name": [
                            "Victoria Beckhamová"
                        ],
                        "alias": [
                            "Вікторія Бекхем",
                            "Posh Spice",
                            "Victoria Adams",
                            "ויקטוריה קרוליין אדאמס",
                            "Victoria Beckham-Adams",
                            "빅토리아 캐럴라인 애덤스",
                            "Виктория Адамс",
                            "Վիկտորյա Կերոլայն Բեքհեմ",
                            "빅토리아 애덤스",
                            "Вікторія Бекем",
                            "פוש ספייס",
                            "Victoria Caroline Beckham",
                            "Бекхэм, Виктория",
                            "ויקטוריה אדאמס",
                            "Victoria Caroline Adams",
                            "Victoria Caroline, Lady Beckham",
                            "Адамс, Виктория",
                            "ვიქტორია ბეკჰემი",
                            "فيكتوريا بيكام",
                            "빅토리아 베컴",
                            "فيكتوريا بيكهام",
                            "विक्टोरिया बेखम",
                            "وکٹوریہ بیکہم",
                            "Viktoriya Bekhem",
                            "ভিক্টোরিয়া বেকহ্যাম",
                            "维多利亚·贝克汉姆",
                            "Victoria Beckhamová",
                            "Viktorija Bekhema",
                            "Викторија Бекам",
                            "Вікторія Бекгем",
                            "ヴィクトリア・ベッカム",
                            "ویکتوریا بکهام",
                            "Виктория Бекхэм",
                            "Вікторыя Бекхэм",
                            "Վիկտորիա Բեքհեմ",
                            "Виктория Бекъм",
                            "Victoria Beckham",
                            "Βικτόρια Μπέκαμ",
                            "ויקטוריה בקהאם"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Victoria Beckhamová",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            },
            {
                "category_list": [
                    "pep"
                ],
                "risk_level": "High",
                "matched_names": [
                    {
                        "record_id": "ih97gUxibKaV5ZLb2XL6Xt",
                        "score": 100,
                        "matched_name": "ديفيد بيكهام",
                        "matching_fields": {}
                    }
                ],
                "entity_type": [
                    "person"
                ],
                "birth_incorporation_date": [
                    "2002-09-01"
                ],
                "data": {
                    "summary": {
                        "date_of_birth": [
                            "2002-09-01"
                        ],
                        "name": [
                            "Ромео Бекхем"
                        ],
                        "alias": [
                            "رومیو بیکہم",
                            "روميو بيكهام",
                            "Ρομέο Μπέκαμ",
                            "Ромео Бекхем",
                            "Romeo Beckham",
                            "Ромео Бекхэм",
                            "ロメオ・ベッカム",
                            "ရိုမီယို ဘက်ခမ်း",
                            "로미오 베컴",
                            "رومئو بکام",
                            "羅密歐·碧咸",
                            "Romeo James Beckham",
                            "로미오 제임스 베컴"
                        ]
                    }
                },
                "risk_score": 72,
                "name": "Ромео Бекхем",
                "country_list": [
                    "United Kingdom"
                ],
                "risk_decision": "Failed"
            }
        ]
    },
    "message": "",
    "sequence_id": "1780478663924-138424"
}

Appendix

category_list

CategoryDescriptionNotes
professional_integrityProfessional IntegrityEvaluates the competence, skills, integrity, and professional ethics of financial practitioners.
regulatory_enforcementRegulatory EnforcementWarnings and penalties issued by regulators to violators.
sanctionsSanctions ListPunitive restrictions imposed by governments or international organizations on individuals, entities, or countries.
pepPolitically Exposed PersonGovernment officials at all levels and other politically related persons.
sipSpecial Interest PersonA natural person with higher risk due to suspected or confirmed involvement in criminal activities
sieSpecial Interest EntityA company or organization with higher risk due to suspected or confirmed involvement in criminal activities.
insolvencyInsolvencyCompanies or organizations unable to repay debts or declared bankrupt by a court.

Country Code

Country NameCode
AfghanistanAF
AlbaniaAL
AlgeriaDZ
Aland IslandsAX
American SamoaAS
AndorraAD
AngolaAO
AnguillaAI
Antigua and BarbudaAG
ArgentinaAR
ArmeniaAM
ArubaAW
AustraliaAU
AustriaAT
AzerbaijanAZ
BahrainBH
BangladeshBD
BarbadosBB
BelarusBY
BelgiumBE
BelizeBZ
BeninBJ
BermudaBM
BhutanBT
BoliviaBO
Bosnia and HerzegovinaBA
BotswanaBW
BrazilBR
British Virgin IslandsVG
BruneiBN
BulgariaBG
Burkina FasoBF
BurundiBI
CambodiaKH
CameroonCM
CanadaCA
Cape VerdeCV
Caribbean NetherlandsBQ
Cayman IslandsKY
Central African RepublicCF
ChadTD
Channel IslandsJE
ChileCL
ChinaCN
Cocos (Keeling) IslandsCC
ColombiaCO
ComorosKM
CongoCG
Cook IslandsCK
Costa RicaCR
Cote D'Ivoire (Ivory Coast)CI
CroatiaHR
CubaCU
CuracaoCW
CyprusCY
Czech RepublicCZ
Democratic Republic of the CongoCD
DenmarkDK
DjiboutiDJ
DominicaDM
Dominican RepublicDO
East TimorTL
EcuadorEC
EgyptEG
El SalvadorSV
Equatorial GuineaGQ
EritreaER
EstoniaEE
EswatiniSZ
EthiopiaET
Falkland Islands (Islas Malvinas)FK
Faroe IslandsFO
FijiFJ
FinlandFI
FranceFR
French GuianaGF
French PolynesiaPF
GabonGA
GeorgiaGE
GermanyDE
GhanaGH
GibraltarGI
GreeceGR
GreenlandGL
GrenadaGD
GuadeloupeGP
GuamGU
GuatemalaGT
GuineaGN
Guinea-BissauGW
GuyanaGY
HaitiHT
Holy SeeVA
HondurasHN
HungaryHU
IcelandIS
IndiaIN
IndonesiaID
IranIR
IraqIQ
IrelandIE
Isle of ManIM
IsraelIL
ItalyIT
JamaicaJM
JapanJP
JordanJO
KazakhstanKZ
KenyaKE
KiribatiKI
KosovoXK
KuwaitKW
KyrgyzstanKG
LaosLA
LatviaLV
LebanonLB
LesothoLS
LiberiaLR
LibyaLY
LiechtensteinLI
LithuaniaLT
LuxembourgLU
MacedoniaMK
MadagascarMG
MalawiMW
MalaysiaMY
MaldivesMV
MaliML
MaltaMT
Marshall IslandsMH
MartiniqueMQ
MauritaniaMR
MauritiusMU
MayotteYT
MexicoMX
MicronesiaFM
MoldovaMD
MonacoMC
MongoliaMN
MontenegroME
MontserratMS
MoroccoMA
MozambiqueMZ
Myanmar (Burma)MM
NamibiaNA
NauruNR
NepalNP
NetherlandsNL
New CaledoniaNC
New ZealandNZ
NicaraguaNI
NigerNE
NigeriaNG
NiueNU
North KoreaKP
Northern Mariana IslandsMP
NorwayNO
OmanOM
PakistanPK
PalauPW
State of PalestinePS
PanamaPA
Papua New GuineaPG
ParaguayPY
PeruPE
PhilippinesPH
Pitcairn IslandsPN
PolandPL
PortugalPT
Puerto RicoPR
QatarQA
ReunionRE
RomaniaRO
RussiaRU
RwandaRW
Saint BarthelemyBL
Saint HelenaSH
Saint Kitts and NevisKN
Saint LuciaLC
Sint MaartenSX
Saint MartinMF
Saint Pierre and MiquelonPM
Saint Vincent and the GrenadinesVC
SamoaWS
San MarinoSM
Sao Tome and PrincipeST
Saudi ArabiaSA
SenegalSN
SerbiaRS
SeychellesSC
Sierra LeoneSL
SingaporeSG
SlovakiaSK
SloveniaSI
Solomon IslandsSB
SomaliaSO
South AfricaZA
South KoreaKR
South SudanSS
SpainES
Sri LankaLK
SudanSD
SurinameSR
SwedenSE
SwitzerlandCH
SyriaSY
TajikistanTJ
TanzaniaTZ
ThailandTH
The BahamasBS
The GambiaGM
TogoTG
TokelauTK
TongaTO
Trinidad and TobagoTT
TunisiaTN
TurkiyeTR
TurkmenistanTM
Turks and Caicos IslandsTC
TuvaluTV
UgandaUG
UkraineUA
United Arab EmiratesAE
United KingdomGB
United StatesUS
UruguayUY
U.S. Virgin IslandsVI
UzbekistanUZ
VanuatuVU
Vatican CityVA
VenezuelaVE
VietnamVN
Wallis and FutunaWF
Western SaharaEH
YemenYE
ZambiaZM
ZimbabweZW

Supported Languages

Language
Arabic
Bulgarian
Catalan
Chinese (Simplified)
Chinese (Traditional)
Croatian
Czech
Danish
Dutch
English
Estonian
Finnish
French
Frisian
German
Greek
Hebrew
Hungarian
Icelandic
Italian
Japanese
Korean
Latin
Latvian
Lithuanian
Norwegian
Norwegian (Nynorsk)
Polish
Portuguese (Brazil)
Portuguese (Portugal)
Romanian
Russian
Serbian
Slovak
Slovenian
Spanish
Swedish
Turkish