Getting Started
Reference documentation for the SecurePointAfrica screening API. The product is in early access β join the waitlist to get API keys and sandbox access when your workspace opens.
Quick Start
- Join the early access waitlist β we will notify you when API keys and sandbox access are ready
- Review the endpoints below to plan your integration
- Connect screening into your onboarding or payment flows
- Export evidence packs for audits and regulator reviews
Base URL
https://api.securepointafrica.com/v1Your First API Call
curl -X POST https://api.securepointafrica.com/v1/screen \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"dob": "1980-01-01",
"country": "NG"
}'Response Format
{
"match": false,
"bestScore": 0.45,
"status": "clear",
"candidates": [
{
"primary_name": "John Doe Smith",
"score": 0.45,
"list_code": "OFAC"
}
],
"referenceId": "screening_123456789"
}