Build on Australian property identity without rebuilding Australian data infrastructure.
PropData Australia is a country-native property graph delivered through PropData's global edge and account layer. The national G-NAF address spine is complete. Queensland, Victoria, Tasmania and ACT cadastral baselines are production-complete. Additional jurisdiction layers are promoted only after source, geometry, rights and cardinality gates pass.
The Australia contract
Applications interact with one country-scoped API contract while PropData handles jurisdiction-specific source systems underneath. Australia is not flattened into a US parcel schema and state-native identifiers are not discarded.
Quick start
Keep the API key server-side and scope Australian requests explicitly with country=AU. Use the strongest identifier available: an exact address, coordinates or a promoted state-native parcel identifier.
curl --get \ "https://propdata-api-worker.sales-fd3.workers.dev/v1/property" \ --data-urlencode "country=AU" \ --data-urlencode "address=YOUR_AUSTRALIAN_ADDRESS" \ -H "x-api-key: $PROPDATA_API_KEY"
const url = new URL("https://propdata-api-worker.sales-fd3.workers.dev/v1/property");
url.searchParams.set("country", "AU");
url.searchParams.set("address", inputAddress);
const response = await fetch(url, {
headers: { "x-api-key": process.env.PROPDATA_API_KEY }
});
if (!response.ok) throw new Error(`PropData ${response.status}`);
const result = await response.json();Coverage semantics
Australia exposes multiple layers with independent coverage. Always interpret property identity and enrichment coverage separately.
| State | Meaning | Application behaviour |
|---|---|---|
baseline_complete | Certified source baseline reconciled to its production checkpoint. | Safe to treat that promoted layer as production coverage for its stated scope. |
expanding | A source or jurisdiction layer is actively being built or refreshed. | Do not assume universal property-level availability. |
partial | Base identity is valid but one or more requested intelligence layers are not present. | Preserve the valid base result and handle missing enrichment separately. |
unavailable | No verified source truth exists for the requested layer or input. | Return/retain unknown; do not infer a favourable or equivalent result. |
Identity model
The Australian graph starts with the national address spine, then attaches state-native cadastral identity and geometry when a promoted relationship can be established.
Promoted route families
The global PropData API is the transport layer. Australia-specific availability remains coverage-aware and can deepen without changing the country scope.
/v1/property?country=AU&address=.../v1/property/by-location?country=AU&lat=...&lng=.../v1/parcel-geometry?country=AU&parcel=.../v1/auth/usage/v1/healthUse only the routes promoted for your Australian coverage and account entitlement. A route existing globally does not imply the corresponding enrichment is available in every AU jurisdiction.
Response handling
Build Australian integrations around explicit status and provenance rather than assuming a single national source schema.
{
"country": "AU",
"jurisdiction": "VIC",
"match_level": "source_native",
"coverage_status": "live",
"property": {
"address_id": "…",
"parcel_id": "…",
"geometry": "available"
},
"provenance": {
"source_name": "Department of Transport and Planning Victoria",
"source_dataset_id": "Vicmap Property / v_parcel_mp",
"source_revision": "…"
}
}Current jurisdiction state
| Scope | Verified product state | Production source direction |
|---|---|---|
| Australia national | Address baseline complete | G-NAF · 16,970,406 |
| Queensland | Cadastral baseline complete | QSCF · 2,156,480 lot parcels |
| Victoria | Cadastral baseline complete | Vicmap · 4,303,714 parcel records |
| Tasmania | Cadastral baseline complete | LIST · 439,539 cadastral parcels |
| ACT | Cadastral baseline complete | ACTGOV BLOCK · 152,986 legal blocks |
| New South Wales | Next promotion · source revision gated | NSW Land Parcel Property Theme |
| WA / SA / NT | National address live · deeper cadastre gated | Authoritative delivery and commercial-use rights required before promotion |
Delivery modes
Australia is a dedicated country product, not a separate account silo. Teams can use the same PropData account across supported countries while selecting an Australia-native delivery mode.