Integrate our secure identity verification flow directly into your application.
Base API URL
https://kyc-api.keertikaonline.comAuthentication
All requests require an API key sent via the x-api-key header.
x-api-key: YOUR_API_KEY/api/kyc/historyRetrieve all past verification records for your account.
curl -X GET https://kyc-api.keertikaonline.com/api/kyc/history \ -H "x-api-key: YOUR_API_KEY"
/api/kyc/aadhaar/initiateInitiate Aadhaar KYC — sends OTP to Aadhaar-linked mobile.
curl -X POST https://kyc-api.keertikaonline.com/api/kyc/aadhaar/initiate \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"aadhaarNumber":"123456789012"}'/api/kyc/aadhaar/verifySubmit the OTP to complete Aadhaar verification and retrieve identity data.
curl -X POST https://kyc-api.keertikaonline.com/api/kyc/aadhaar/verify \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"referenceId":"76395845","otp":"123456"}'