Introduction

Klarify API provides programmatic access to founder-authorised regulatory compliance snapshots for African fintech and digital asset startups.

Introduction

Use it to integrate compliance posture checks into investor due diligence, accelerator application pipelines, and bank innovation team workflows — without asking founders to export PDFs or grant dashboard access.


Base URL

https://api.klarify.africa

All endpoints return JSON with a consistent envelope:

{
  "success": true,
  "data": { ... },
  "meta": { ... }
}

Errors:

{
  "success": false,
  "error": "Human-readable message",
  "code": "MACHINE_READABLE_CODE"
}

Current API surface (v0)

MethodEndpointDescription
GET/api/v1/compliance-status/{token}Compliance posture snapshot for a startup

More endpoints (partner API keys, portfolio webhooks) are planned for v1. See API changelog.


Who this is for

AudienceUse case
Accelerators & VCsAuto-screen fintech applicants; flag high regulatory risk before partner meetings
Bank innovation teamsDue diligence on fintech partnership or investment targets
FoundersShare a machine-readable status link alongside the human-readable investor view

What this API is — and is not

It is:

  • A self-assessment snapshot based on data the founder maintains in Klarify
  • Founder-consented — only accessible with a time-limited share token the founder creates
  • Aligned with Nigerian and pan-African regulatory readiness dimensions (Readiness Score, ARIP stage, product classification)

It is not:

  • Legal advice
  • A regulator certification or “Klarify Certified” badge
  • A guarantee of compliance or licence status
  • A substitute for independent legal and regulatory due diligence

Every successful response includes a mandatory disclaimer field. You must surface it in any UI that displays API data.


Getting a token (founders)

Tokens are created in Klarify FundRaise Mode (Compass plan or above):

  1. Sign in at klarify.africa
  2. Open Dashboard → FundRaise Mode
  3. Generate a Regulatory DD Pack
  4. Click Create investor share link (valid 7 days)
  5. Copy the API URL (or extract the token from the share link)

Founders can revoke the link at any time; revoked tokens immediately return 404 NOT_FOUND.


Quick start (integrators)

Replace {token} with the founder-provided share token:

curl -s "https://api.klarify.africa/api/v1/compliance-status/{token}" \
  -H "Accept: application/json" | jq .

Partner integrations

Building an accelerator or VC integration? Email [email protected] — early partners get priority access to v1 partner API keys.


Health check

The Klarify platform health endpoint (not part of the Compliance Status API):

GET https://api.klarify.africa/api/health