Skip to main content
cURL
curl --request POST \
  --url https://sigmaaml.sabipay.com/api/v1/aml/pep \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --header 'apiSecret: <api-key>' \
  --data '
{
  "name": "<string>",
  "threshold": 85,
  "country": "<string>"
}
'
{
  "message": "Request created successfully. Result will be sent to your webhook",
  "data": {
    "id": "<string>",
    "query": "<string>",
    "businessProfile": "<string>",
    "status": "pending",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

apiKey
string
header
required
apiSecret
string
header
required

Body

application/json

Pep request payload

name
string
required

Full name of the individual to be screened

threshold
number
required

Matching threshold for screening (e.g. similarity score)

Example:

85

country
string

Country code (e.g., 'ru' for Russia)

Response

Check PEP result

message
string

Message after the PEP request is successfully submitted

Example:

"Request created successfully. Result will be sent to your webhook"

data
object

Details of the submitted PEP screening request