Getting Started
Set up your VeroID account and make your first verification
This guide will help you set up your VeroID account and make your first identity verification request.
Prerequisites
- An Australian business (ABN required)
- A payment method for early access signup
Step 1: Create Your Account
- Visit dashboard.veroid.com.au
- Sign in with email/password (or Google)
- Complete the early access payment ($100 for 100 credits)
- Your account will be activated automatically
Step 2: Generate API Keys
After your account is activated:
- Go to the API Keys section in your dashboard
- Create a sandbox key for testing (prefix:
sk_sandbox_) - Create a live key for production (prefix:
sk_live_)
Warning: Keep your API keys secure! Never expose them in client-side code or public repositories.
Step 3: Make Your First Request
Test with Sandbox
Use your sandbox key to test without using credits. Use family name dvsmatch to guarantee a match result (Y):
curl -X POST https://api.veroid.com.au/v1/verify \
-H "Content-Type: application/json" \
-H "X-API-Key: sk_sandbox_your_key" \
-d '{
"documentType": "drivers_licence",
"givenName": "John",
"familyName": "dvsmatch",
"dateOfBirth": "1990-01-15",
"licenceNumber": "1234567",
"stateOfIssue": "NSW",
"cardNumber": "1234567890",
"consentAttestedAt": "2026-05-19T10:30:00Z",
"consentVersion": "1.0"
}'Expected Response
{
"success": true,
"verificationId": "ver_abc123",
"documentType": "drivers_licence",
"status": "success",
"match": true,
"responseCode": "Y",
"message": "The data in the request matches data held by the issuer",
"timestamp": "2024-01-15T10:30:00Z",
"environment": "sandbox",
"requestId": "req_xyz789"
}Step 4: Go Live
When you're ready for production:
- Replace your sandbox key with your live key
- Ensure you have sufficient credit balance
- Each live verification deducts 1 credit (Y, N, or D outcomes — only system errors do not deduct)
Next Steps
- Authentication - Learn about API key management
- Document Types - Explore supported documents
- Sandbox Mode - Test edge cases and error handling
- API Reference - Complete endpoint documentation