POST
/
aml
/
checkIndividual
curl --request POST \
  --url https://api-umbrella.io/api/services/aml/checkIndividual \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Boris Johnson",
  "dob": "1964/06/19"
}'
{
  "timestamp": "2024/09/24T19:16:00Z",
  "totalHits": 1,
  "foundRecords": [
    {
      "id": "c438b18a93cd3c13",
      "sourceType": "PEP",
      "pepType": "POLITICIAN",
      "sourceId": "dilisense_pep",
      "entityType": "INDIVIDUAL",
      "gender": "MALE",
      "name": "Boris Johnson",
      "lastNames": [
        "Johnson",
        "Pfeffel"
      ],
      "aliasNames": [
        "Alexander Boris de Pfeffel Johnson",
        "Boris",
        "BoJo"
      ],
      "givenNames": [
        "Alexander",
        "Boris"
      ],
      "dateOfBirth": [
        "1964/06/19"
      ],
      "placeOfBirth": [
        "New York City"
      ],
      "citizenship": [
        "GB",
        "US"
      ],
      "occupations": [
        "journalist",
        "politician"
      ],
      "positions": [
        "2001/06/07 - 2005/04/11 Member of the 53rd Parliament of the United Kingdom",
        "Since 2019/07/24 Prime Minister of the United Kingdom"
      ],
      "politicalParties": [
        "Conservative Party"
      ],
      "links": [
        "https://www.gov.uk/government/people/boris-johnson",
        "Facebook: borisjohnson"
      ]
    }
  ]
}

For a usage description of the AML Check Individual Service, please refer to the AML page.

Endpoint

POST /aml/checkIndividual

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json
A JSON array of matching individuals.

The response is of type object.