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

  1. Join the early access waitlist β€” we will notify you when API keys and sandbox access are ready
  2. Review the endpoints below to plan your integration
  3. Connect screening into your onboarding or payment flows
  4. Export evidence packs for audits and regulator reviews

Base URL

https://api.securepointafrica.com/v1

Your 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"
}
SecurePointAfrica | AML Screening Evidence Packs for African Fintechs