Three focused APIs, one trusted source. Verify an identity, pull ASIC company and director records, or search Australia's deepest consumer contact data, all through clean, documented endpoints backed by an approved ASIC information broker and ISO 27001 certified infrastructure.
Getting started
Every Acceleon API uses your existing account credentials, so your access rights and download limits carry across from the web app. Request access, authenticate, and start calling.
Acceleon services are available to approved businesses. Talk to our team to provision credentials and enable the APIs and datasets you need.
The ASIC and Consumer APIs use OAuth. Post your credentials to the Login endpoint and receive a bearer token to send on every call. Verify accepts credentials on the request itself.
Send your request to the base URL we provide on activation. Explore and test the ASIC API live in Swagger UI, and the Consumer API against a fixed test sandbox.
The endpoint paths shown on this page are simplified for illustration. Approved developers receive the full API reference, request and response schemas, base URLs and Swagger definitions.
API 01
Real-time identity verification and match scoring.
Confirm a person is who they say they are. Verify a name, address and phone against Australia's deepest consumer datasets and ASIC director records in a single call, and get back a clear match description and score you can feed straight into your onboarding and fraud decisions.
# verification request (simplified) request { ISO: "AUS" options: [FuzzySearching, ExecuteDataPool, ExecuteASIC] entity: { name: "Jordan Sample" address: "10 Smith St, Richmond VIC 3121" phone: "0400 123 456" } } # response → MatchOrigin: "Acceleon" → MatchDescription: "Excellent" → Score: 100 → Status: "Success"
Endpoint
API 02
Company, business and director data, straight from the source.
As an approved ASIC information broker, Acceleon lets you search and purchase current and historical company and business extracts programmatically, including director address details that are no longer available from the ASIC website, plus director records enriched with contact data.
# 1. authenticate POST /login grant_type=password # 2. search the registers GET /companies?q=Acme&state=VIC Authorization: Bearer <token> # 3. purchase, then download the extract POST /companies/{id}/extract → returns extractId GET /extracts/{id}?includePDF=true
Selected endpoints
API 03
Find, verify and enrich people at scale.
The engine behind Acceleon Locate. Search Australia's deepest contact data, then purchase verified phone numbers and email addresses, trace a person's address history, and surface other occupants, known associates and fresh leads.
# find a person POST /search Authorization: Bearer <token> { "Name": "Jordan Sample", "Suburb": "Richmond", "State": "VIC" } # then buy a verified contact POST /contacts/purchase recordId: "<from result>" → 200 verified mobile returned
Selected endpoints
Built for integration
Consistent authentication, documented endpoints and Australian data housed onshore, delivered by an ISO 27001 certified team and an approved ASIC information broker.
Shared credentials, bearer tokens and predictable JSON, so one integration pattern carries across the APIs.
TLS in transit, encryption at rest, ISO 27001 certification and all data stored in Australia.
Swagger UI for the ASIC API, a fixed sandbox for the Consumer API, and sample code for each service.