ComplyAdvantage

What kind of data I will get

ComplyAdvantage is a company that provides solutions and services related to anti-money laundering (AML), know your customer (KYC), and counter-terrorism financing (CTF) compliance for businesses and financial institutions. Their primary focus is on helping organizations identify and manage financial crime risks more effectively.

Integration Scope

ComplyAdvantage allows to you to choose what type of search will be performed on a customer. Possible values include:

  • sanction

  • warning

  • fitness-probity

  • pep

Input

AttributeTypeDescription

searchTerm

string

Required. A string representing the name of the entity or an object

yearOfBirth

number

Optional

{
    "searchTerm": "Jan Kowalski",
    "yearOfBirth": 1990
}

Output

AttributeTypeDescription

code

number

Response code

status

string

Response status

object

Content data

Content

AttributeTypeDescription

object

Data information

Data

AttributeTypeDescription

id

number

ID

ref

string

Reference

searcherId

number

Searcher ID

assigneeId

number

Assignee ID

object

Search profile data

object

Filters data provided in first step

matchStatus

string

Match status

riskLevel

string

Risk level

searchTerm

string

Search term

submittedTerm

string

Submitted term

clientRef

string

Client reference

totalHits

string

Total hits

totalMatches

number

Total matches

updatedAt

string

Updated at timestamp

createdAt

string

Created at timestamp

array<object>

List of tags

array<object>

List of hits

shareUrl

string

Share URL

limit

number

Limit

offset

number

Offset

object

Searcher user data

object

Assignee user data

SearchProfile

AttributeTypeDescription

name

string

Name of the search profile

slug

string

Slug for the search profile

Filters

AttributeTypeDescription

types

array<string>

List of types

entityType

string

Entity type

birthYear

string

Birth year

passport

string

Passport

exactMatch

boolean

Exact match

fuzziness

number

Fuzziness

removeDeceased

number

Remove deceased

countryCodes

array<string>

List of country codes

Tag

AttributeTypeDescription

name

string

Name of the tag

Hit

AttributeTypeDescription

object

Document information

isWhitelisted

boolean

This information serves as an indicator of whether an entity has been whitelisted based on the provided client reference. It becomes visible when the whitelist feature is enabled for your account. You have the option to customize this setting through your settings page or get in touch with your ComplyAdvantage account manager to learn more about this feature. Entities are considered whitelisted if they are identified as false positives using your client reference and have not undergone any updates since then.

matchTypes

array<string>

Data as to what matched. Possible values include: - aka_exact - name_exact - name_fuzzy - aka_fuzzy - phonetic_name - phonetic_aka - equivalent_aka - unknown

matchTypesDetails

array<object>

A detailed breakdown of why a hit occurred. For every name you matched on an entity, it will give you how each term from your search matched it, as well other information about that name.

score

number

The search results are evaluated and ranked based on a score provided in the metadata. It's important to note that this score doesn't represent an absolute ranking of the document. Instead, it should be utilized solely for sorting search results and offering a relative measure of their relevance.

Doc

AttributeTypeDescription

array<object>

Array of alternative names for the entity

array<object>

Array of names of associated entities

entityType

string

Entity type

array<object>

Array of data fields with "name" and "value" parameters at the minimum

firstName

string

First name

id

string

ID

lastName

string

Last name

lastUpdatedUtc

string

Last updated timestamp

middleNames

string

Middle names

array<object>

List of media entries where appropriate, with the "date", "title", "snippet" and "url" parameters

name

string

Name of entity, such as person name (e.g. "Jan Kowalski")

sources

array<string>

Array of data sources (eg. sanction lists)

types

array<string>

What kind of alert or warning is associated with the entity (from "sanction", "pep", "warning")

AKA

AttributeTypeDescription

name

string

Name of the AKA

Associate

AttributeTypeDescription

name

string

Name of the associate

association

string

Association information

Field

AttributeTypeDescription

locale

string

Locale

name

string

Field name

source

string

Field source

value

string

Field value

tag

string

Field tag

Media

AttributeTypeDescription

date

string

Media date

snippet

string

Media snippet

title

string

Media title

url

string

Media URL

User

AttributeTypeDescription

id

string

User ID

email

string

User email

name

string

User name

phone

string

User phone number

createdAt

string

User creation timestamp

Output Example

{
    "complyAdvantage": {
        "code": 200,
        "status": "SUCCESS",
        "content": {
            "data": {
                "id": 1,
                "ref": "REF-001",
                "searcherId": 101,
                "assigneeId": 102,
                "searchProfile": {
                    "name": "Profile A",
                    "slug": "profile-a"
                },
                "filters": {
                    "types": [
                        "pep",
                        "sanction"
                    ],
                    "entityType": "person",
                    "birthYear": "1980",
                    "passport": "AB123456",
                    "exactMatch": false,
                    "fuzziness": 0.2,
                    "removeDeceased": 1,
                    "countryCodes": [
                        "US",
                        "CA"
                    ]
                },
                "matchStatus": "Partial",
                "riskLevel": "Medium",
                "searchTerm": "John Doe",
                "submittedTerm": "Doe, John",
                "clientRef": "CUST-001",
                "totalHits": 5,
                "totalMatches": 10,
                "updatedAt": "2023-09-18T10:30:00Z",
                "createdAt": "2023-09-18T10:00:00Z",
                "tags": [
                    {
                        "name": "Tag1"
                    },
                    {
                        "name": "Tag2"
                    }
                ],
                "hits": [
                    {
                        "doc": {
                            "aka": [
                                {
                                    "name": "Johnny"
                                }
                            ],
                            "associates": [
                                {
                                    "name": "Jane Smith",
                                    "association": "Friend"
                                },
                                {
                                    "name": "Bob Johnson",
                                    "association": "Colleague"
                                }
                            ],
                            "entityType": "person",
                            "fields": [
                                {
                                    "locale": "en-US",
                                    "name": "Full Name",
                                    "source": "Public Records",
                                    "value": "John Doe",
                                    "tag": "Name"
                                }
                            ],
                            "firstName": "John",
                            "id": "JD123",
                            "lastName": "Doe",
                            "lastUpdatedUtc": "2023-09-18T11:45:00Z",
                            "middleNames": "M.",
                            "media": [
                                {
                                    "date": "2023-09-18",
                                    "snippet": "News snippet about John Doe",
                                    "title": "News Article",
                                    "url": "https://example.com/news/123"
                                }
                            ],
                            "name": "John Doe",
                            "sources": [
                                "Source1",
                                "Source2"
                            ],
                            "types": [
                                "Person"
                            ]
                        },
                        "isWhitelisted": false,
                        "matchTypes": [
                            "NameMatch"
                        ],
                        "matchTypesDetails": [],
                        "score": 0.85
                    }
                ],
                "shareUrl": "https://example.com/share/123",
                "limit": 10,
                "offset": 0,
                "searcher": {
                    "id": "user101",
                    "email": "user@example.com",
                    "name": "Alice Johnson",
                    "phone": "+1 (123) 456-7890",
                    "createdAt": "2023-09-17T14:00:00Z"
                },
                "assignee": {
                    "id": "user102",
                    "email": "assignee@example.com",
                    "name": "Bob Smith",
                    "phone": "+1 (987) 654-3210",
                    "createdAt": "2023-09-17T15:30:00Z"
                }
            }
        }
    }
}

Last updated