cURL
curl --request POST \ --url https://api.payvessel.com/kyc/api/v1/merchant/nin/enhanced \ --header 'Content-Type: <content-type>' \ --header 'api-key: <api-key>' \ --header 'api-secret: <api-secret>' \ --data ' { "nin": "12345678901" } '
200
successfulVerification
{ "success": true, "message": "NIN verification completed successfully", "data": { "nin": "12345678901", "first_name": "John", "middle_name": "Adebayo", "surname": "Doe", "gender": "MALE", "birth_date": "1992-08-14", "photo": "/9j/4AAQSkZJRgABAQAAAQABAAD...", "telephone_no": "08012345678", "error_message": "" }, "charges": { "charged": false, "charged_amount": "0.00" } }
Verify a NIN and retrieve an enriched customer identity profile.
Your PayVessel API key
Your PayVessel API secret
Request content type
application/json
Customer NIN
"12345678901"
Enhanced NIN verification response
Whether the request completed successfully
true
Response message
"NIN verification completed successfully"
Show child attributes