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.
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/tokenExchange API key/secret for a short-lived bearer token (OAuth2 client credentials).
POST
/api/auth/registerCreate a new developer account. Returns user object.
POST
/api/auth/loginSign in with email + password or email + PIN.
Verification
POST
/api/v1/verifyVerify a NIN in live mode. Charge applies. Returns identity data.
POST
/api/v1/sandbox/verifyVerify a NIN against mock citizens — free, deterministic.
POST
/api/verify/startBegin a guided verification flow (returns a sessionId).
POST
/api/verify/submitSubmit CAPTCHA / response for an in-flight session.
Wallet & Billing
GET
/api/user/profileCurrent user, balance, and API key metadata.
GET
/api/funding/status/:referencePoll funding reference status (Paystack transfer via KnowIT Merchant).
Account
POST
/api/user/generate-keyRotate the API key. Old key is invalidated.
POST
/api/user/security-settingsUpdate password, PIN, or webhook URL.
GET
/api/user/logsLast 200 API call log rows for this user.
