VeroID

Introduction

VeroID - Australian identity verification API

VeroID provides simple, affordable access to the Australian Government's Document Verification Service (DVS). Verify identity documents including driver's licences, passports, Medicare cards, visas, birth certificates, and citizenship certificates.

Why VeroID?

  • $1.50 per verification - The most affordable DVS access for Australian startups
  • Simple REST API - No complex SOAP/XML, just JSON
  • Sandbox mode - Test your integration without spending credits
  • AWS Sydney - All data stays in Australia for compliance

Quick Start

curl -X POST https://api.veroid.com.au/v1/verify \
  -H "Content-Type: application/json" \
  -H "X-API-Key: sk_live_your_api_key" \
  -d '{
    "documentType": "drivers_licence",
    "givenName": "John",
    "familyName": "Smith",
    "dateOfBirth": "1990-01-15",
    "licenceNumber": "12345678",
    "stateOfIssue": "NSW"
  }'

Supported Documents

DocumentCoverage
Driver's LicenceAll states/territories
PassportAustralian passports
MedicareGreen, blue, yellow cards
VisaImmiCard
Birth CertificateAll states/territories
CitizenshipCertificates

Getting Started

  1. Create an account and complete the early access payment
  2. Generate your API keys in the dashboard
  3. Test with sandbox mode using sk_sandbox_* keys
  4. Switch to live mode with sk_live_* keys when ready