Skip to content
In force

Tranche 2 started 1 July — AML/CTF obligations now extend beyond financial services.

See who is coveredarrow_forward
WatchEyeOnboarding & monitoring

Customer onboarding, screening and ongoing monitoring in one system, with real-time KYC and KYB alerts when a customer's risk changes.

Visit WatchEyearrow_forwardcheck_circleIncluded in the Global Data Portal
IDFEX ID CheckIdentity verification

One-to-one identity, document and data checks against the DVS and Australian data sources, run from the Portal or by API.

Visit IDFEX ID Checkarrow_forwardcheck_circleIncluded in the Global Data Portal
ID PassSelf-service verification

Customers verify their own identity and biometrics from a link on their phone. The result comes back to you, and they keep control of their data.

Visit ID Passarrow_forwardcheck_circleIncluded in the Global Data Portal
InsiightData quality

Verifies, corrects and enriches customer records so they stay accurate — one at a time or across your whole database.

Visit Insiightarrow_forwardcheck_circleIncluded in the Global Data Portal
Australian Death CheckDeceased data

The official national death data source. Match your records against it to find and remove deceased individuals.

Visit Australian Death Checkarrow_forwardcheck_circleIncluded in the Global Data Portal
QuesterMarketing lists

Build targeted, privacy-compliant Australian marketing lists with smart filters. Pay only for the records you download.

Visit Questerarrow_forwardcheck_circleIncluded in the Global Data Portal
verified_userVerify identities7 solutions

Confirm a person or business is who they claim to be: government IDs, biometrics, business registries and employment checks against authoritative Australian sources.

All solutionsarrow_forwardcheck_circleAvailable in the Portal and by API
policy_alertStay compliant6 solutions

Meet AUSTRAC obligations and understand customer risk: screening, risk assessment, fraud controls and investigation tools with evidence recorded for each check.

All solutionsarrow_forwardcheck_circleAvailable in the Portal and by API
databaseImprove your data3 solutions

Keep customer records accurate and put them to work: correct and enrich existing data, unify it into a single view, or build compliant marketing lists from opted-in records.

All solutionsarrow_forwardcheck_circleAvailable in the Portal and by API
monitoringWatchEye API14 categories

The WatchEye API gives programmatic access to everything in WatchEye: PEP and sanctions screening, identity checks, IDPass verifications, monitoring programs, events and reports.

View allarrow_forwardcheck_circleSandbox environment for integration testing
policyAML & screening6 use cases

Obligations under the AML/CTF Act, from screening at onboarding through to ongoing monitoring — with the evidence for each check recorded.

All use casesarrow_forwardcheck_circleMapped to the products and data that cover it
how_to_regOnboarding & identity3 use cases

Verifying who a customer, employee or account holder is — at sign-up and during ongoing checks — against authoritative Australian sources.

All use casesarrow_forwardcheck_circleMapped to the products and data that cover it
databaseData & enrichment4 use cases

Keeping customer records accurate, current and complete: validate contact detail, fill the gaps, locate people and remove deceased records.

All use casesarrow_forwardcheck_circleMapped to the products and data that cover it
Global Data
Portalarrow_forward
Productsexpand_more
Solutionsexpand_more
Use casesexpand_more
Dataexpand_more
APIarrow_forwardIndustriesarrow_forwardResourcesarrow_forwardAboutarrow_forwardContactarrow_forward Request a Demo
Talk to the team

9am–5pm AEST, Monday to Friday.

call03 9948 4089
Liveness Check

Create a Liveness Check API

POST
/liveness_check
LIVE

Creates a hosted liveness verification link. The end user is guided through a face liveness capture flow in their browser. The result (live human vs spoof attempt) can then be retrieved via the GET endpoint or pushed to your webhook. Configurable link validity, threshold and audit-image retention give you control over the flow without writing your own capture UI.

Example Request

POST
request.json
key Auth: BearerAuth
{
  "return_url": "https://example.com/return",
  "webhook_url": "https://example.com/webhook",
  "link_valid_mins": 10,
  "threshold": 70,
  "audit_images": 2
}

Request Schema

return_url
Required
url

Where to redirect the user after the flow completes (or hits a terminal state).

webhook_url
Optional
url

Optional webhook for lifecycle events.

link_valid_mins
Optional
integer · (5 to 30)

Link validity window. Default 10.

threshold
Optional
integer · (0 to 99)

Custom liveness score threshold. Default is the system value (currently 70).

audit_images
Optional
integer · (0 to 4)

Number of additional audit frame images to retain (beyond the single probe image).

Available Response Data

5 Data Points
01
fingerprint

token

used with the GET endpoint to fetch the result

02
data_object

url

hosted liveness capture URL to share with the end user

03
data_object

secret

used for webhook signature verification HMAC SHA-256 hex digest of the payload

04
data_object

webhook_url

echoed when supplied

05
fingerprint

API reference UUID

lock Full API documentation provided after vetting from our compliance team.
By The Numbers

API Data Scale & Coverage tag

Unmatched data depth to power your compliance and verification workflows.

50M+
Phone & Email Records
40M+
Adverse Court Records
2BN+
Australian Universe Records
18M+
Real Estate Records
7M+
Deceased Records
980M+
Social Media & Employment Records
Practical Applications

Technical Use Cases tag

verified_user

Standalone liveness verification

Run liveness as an independent step. For example, before a high-value transaction, account recovery, or password reset, without invoking the full ID Pass flow

security

Anti-spoofing for sensitive workflows

Defend against photo, screen replay and mask attacks at high-risk customer touchpoints using NIST-grade liveness detection.

Real-time Notifications

Webhooks & Events tag

notifications
complete

The user has finished the liveness capture flow. Call GET /liveness_check?token=... from your authenticated backend to retrieve the result (passed boolean, confidence score, threshold applied, probe image, optional audit images). | link: /liveness_check (GET)

warning
expired

The link expired before the user completed the capture. The result endpoint will return HTTP 410 for this token. Create a new liveness check if the customer still needs to be verified. | link: /liveness_check (POST)

Trust & Assurance

Compliance & Security tag

Enterprise-grade infrastructure audited against the standards your regulators require.

verified_user
ISO 27001 Certified
enhanced_encryption
AES-256 Encryption
public
Australian Data Sovereignty
Integration & Support

Common Questions tag

Everything you need to know about implementation details and compliance infrastructure.

shield_lock Security

How do webhook signatures work?

add

When an event fires, GlobalData POSTs the JSON body with a Signature HTTP header containing an HMAC SHA-256 hex digest of the payload, signed with the secret returned at creation. Verify the signature server-side to confirm authenticity. Webhooks come from a known set of IPs you can whitelist.

shield_lock Security

What's lc_token and should I trust it?

add

When the user is redirected back to your return_url, an lc_token query parameter is added (and an error parameter on terminal failure states). Treat lc_token as untrusted input. Always fetch the definitive result from the GET endpoint under your authenticated server context.

rocket_launch Implementation

What's the difference between threshold and audit images?

add

threshold (0 to 99) is the score cutoff above which the liveness check is considered passed. audit_images (0 to 4) controls how many additional intermediate frame images are retained for around 30 minutes for audit and review purposes. The two are independent of each other.

Try it Live

API Testing Sandbox tag

Test the Create a Liveness Check API directly in your browser with live mock data and see instant results.

rocket_launch Request Sandbox Access

Access to live sandbox environments requires manual approval from our compliance team.

Enquire now

Ready to integrate Create a Liveness Check API?

Talk to our team about credentials, sandbox access and the right combination of endpoints for your workflow.

Call 03 9948 4089 · sales@globaldata.net.au