PUBLIC API REFERENCE

VetifyID API Documentation

Build production-grade identity verification flows with a single, well-documented REST API. Authenticate once, verify thousands of NINs per minute.

Quickstart

Sign up, generate an API key from the dashboard, then send your first sandbox verification. Sandbox mode is free and uses pre-seeded mock citizens — switch to live once you've funded your wallet.

POST /api/v1/sandbox/verify · curl
curl -X POST https://api.vetifyid.com/api/v1/sandbox/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"nin": "12345678901"}'

Authentication

POST
/api/v1/auth/token
Exchange API key/secret for a short-lived bearer token (OAuth2 client credentials).
POST
/api/auth/register
Create a new developer account. Returns user object.
POST
/api/auth/login
Sign in with email + password or email + PIN.

Verification

POST
/api/v1/verify
Verify a NIN in live mode. Charge applies. Returns identity data.
POST
/api/v1/sandbox/verify
Verify a NIN against mock citizens — free, deterministic.
POST
/api/verify/start
Begin a guided verification flow (returns a sessionId).
POST
/api/verify/submit
Submit CAPTCHA / response for an in-flight session.

Wallet & Billing

GET
/api/user/profile
Current user, balance, and API key metadata.
GET
/api/funding/status/:reference
Poll funding reference status (Paystack transfer via KnowIT Merchant).

Account

POST
/api/user/generate-key
Rotate the API key. Old key is invalidated.
POST
/api/user/security-settings
Update password, PIN, or webhook URL.
GET
/api/user/logs
Last 200 API call log rows for this user.