Politically Exposed Persons (PEP) List
Sigma PEP list helps you spot people in important public roles, so you can better manage corruption and bribery risks.
Key Features
Comprehensive Data: Access a curated database containing information on individuals with notable public roles.
Real-time Screening: Integrate PEP screening seamlessly into your applications to ensure up-to-the-minute risk assessment.
Flexible Parameters: Customize your screening queries with parameters such as name, country, and more.
Example
To run a pep list check for a person, you will make this request:
Method: POST 
Endpoint: api/v1/aml/pep 
Headers :
{
"apiKey" : [YOUR APP API_KEY],
"apiSecret" : [YOUR APP API_SECRET],
"Content-Type": "application/json"
}
  Body:
{
    "name": "Vladimir Putin",
    "threshold": 85
    "country": "ru"
} 
  | Parameter | Type | Description | 
|---|---|---|
| name | String | The name of the person to check for in the pep list | 
| threshold | Number | A numeric value (0 to 100) representing the minimum confidence level for a match. | 
| country (Optional) | String | Country where the person is located. ISO 4217 Standard. See ISO Country Codes . (use 'alpha-2' code from the link). | 
Response
After submitting your request, the success response you will receive can be seen below:
{
    "data": {
        "name": "Vladimir Putin",
        "threshold": 85,
        "checkId": "30d9d6ee-802b-4c05-8844-2ba8e359a251",
        "businessProfile": "64a6d6446b67960f0543b301"
    },
    "message": "Request Submitted successfully"
}
  | Parameter | Type | Description | 
|---|---|---|
| data | Object | Contains information about the request | 
| data.name | String | Same as in the request | 
| data.threshold | String | Same as in the request | 
| data.checkId | String | Unique id that we will send with the response back to you along with the results | 
| data.businessProfile | String | Unique id for your organization with us | 
Once your request is processed and a response is ready, a webhook will be sent to your pre-defined webhook URL.
Go to webhooks to setup your webhook see possible responses from the request