Endpoints to authenticate and generate an authentication token for secure access to the API.
KYC (Know Your Customer) (1.0.0)
KYC (Know Your Customer) enables you to make better-informed risk management decisions by utilizing our comprehensive business information. This service is designed for both Know Your Business operations and AML (Anti-Money Laundering) screening features.
The application ensures that you can conduct due diligence on customers and suppliers alike, identify key parties, verify individual identity details globally, and screen against international sanctions, regulatory enforcements, PEP (Politically Exposed Persons) lists, and potential adverse media.
https://connect.sandbox.creditsafe.com/v1/
https://connect.creditsafe.com/v1/
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/searches
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/searches
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/searches?IsScheduled=true&SearchType=individual&SearchTerm=string&Datasets=string&Thresholds=0&PepTiers=pepTier1&page=0&pageSize=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "totalSize": 0, "items": [ { … } ] }
Request
This endpoint allows downloading monitored searches filtered by various criteria as a CSV file.A maximum of 1000 records can be downloaded at once. If more than 1000 records match the criteria, If no searches are found, a 204 No Content response is returned. A 409 Conflict response is returned.
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/searches/monitored/download
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/searches/monitored/download
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/searches/monitored/download?searchType=individual&searchTerm=string&isScheduled=true&datasets=string&thresholds=0&pepTiers=pepTier1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "downloadUrl": "string", "fileName": "string", "expiresAt": "2019-08-24T14:15:22Z" }