The ultimate KYC suite for modern developers. Validate Aadhaar, PAN, Passports, and Digilocker through a single, lightning-fast platform.
Endpoints
Uptime
Avg Latency
curl -X POST https://api.sonyapi.com/v2/verify/aadhaar \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "aadhaar": "[Your Aadhaar Number]", "consent": true }'
Trusted by thousands of innovative teams
We've eliminated the complexity of identity verification so you can focus on building your product.
Sign up for a free developer account and generate your live and test API keys from the dashboard instantly.
Drop in our beautifully designed UI components or use our native SDKs for Node.js, Python, or PHP.
Start verifying identities securely. Webhooks will notify your backend the moment verification succeeds.
Everything you need for seamless onboarding, documented thoroughly.
We speak your language. Copy, paste, and run.
curl -X POST https://api.sonyapi.com/v2/verify/pan \ -H "Authorization: Bearer sk_live_your_key" \ -H "Content-Type: application/json" \ -d '{ "pan_number": "ABCDE1234F" }'
const SonyAPI = require('sony-api-node'); const sony = new SonyAPI('sk_live_your_key'); async function verifyPAN() { const response = await sony.kyc.verifyPan({ pan_number: 'ABCDE1234F' }); console.log(response.data); }
import sony_api sony = sony_api.Client(api_key='sk_live_your_key') def verify_pan(): response = sony.kyc.verify_pan( pan_number='ABCDE1234F' ) print(response)
Create a free developer account and get your test keys instantly.