VeroID Documentation
Integrate Australian identity verification into your application. Verify driver's licences, passports, Medicare cards, and more through the Document Verification Service (DVS).
Quick Links
Getting Started
Set up your account and make your first verification request in minutes.
API Reference
Complete API documentation with request/response examples.
Document Types
Learn about supported documents: licences, passports, Medicare, and more.
Authentication
API key management, environments, and security best practices.
Sandbox Mode
Test your integration with mock data before going live.
Billing & Credits
Understand pricing, credit packages, and usage tracking.
Simple Integration
Verify identity documents with a single API call
verify.ts
const response = await fetch('https://api.veroid.com.au/v1/verify', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'sk_live_your_api_key'
},
body: JSON.stringify({
documentType: 'drivers_licence',
givenName: 'John',
familyName: 'Smith',
dateOfBirth: '1990-01-15',
licenceNumber: '12345678',
stateOfIssue: 'NSW'
})
});
const result = await response.json();
// { success: true, match: true, verificationId: "ver_..." }