PROPDATA · AUSTRALIA

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.

16.97Mnational G-NAF addresses
7.05M+live cadastral records
4cadastral jurisdictions live
AUone country scope

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.

Global infrastructureAuthentication, account usage, edge delivery, rate limits and the response envelope remain consistent with PropData.
Country-native graphAustralian address IDs, parcel/lot/block identifiers, source revisions, geometry and state/territory semantics remain source-aware.
Identity ≠ enrichmentA valid address/property match does not imply every cadastral or enrichment layer exists for that jurisdiction.
Truthful unavailable statesMissing source facts remain null or unavailable. PropData does not synthesize an equivalent field from another state.

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 · server-sidex-api-key
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"
Node.js · server-sidecountry=AU
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();
Credential rule: never embed a PropData API key in a browser bundle, URL, screenshot, client analytics event or public repository. The Australia Workspace generates safe server-side examples and does not ask you to paste a production key into the page.

Coverage semantics

Australia exposes multiple layers with independent coverage. Always interpret property identity and enrichment coverage separately.

StateMeaningApplication behaviour
baseline_completeCertified source baseline reconciled to its production checkpoint.Safe to treat that promoted layer as production coverage for its stated scope.
expandingA source or jurisdiction layer is actively being built or refreshed.Do not assume universal property-level availability.
partialBase identity is valid but one or more requested intelligence layers are not present.Preserve the valid base result and handle missing enrichment separately.
unavailableNo verified source truth exists for the requested layer or input.Return/retain unknown; do not infer a favourable or equivalent result.
Important: an HTTP 200 does not mean every Australian source layer exists for the resolved property. Read returned match, coverage and provenance objects before interpreting absent data.

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.

G-NAF address identity16,970,406 certified national records across all state/territory partitions in the 2026-08 baseline.
QueenslandQSCF lot records preserve Queensland source identity and geometry.
VictoriaVicmap parcel identity retains PFI as parcel identity and UFI as the stable baseline cursor used during ingestion.
TasmaniaLIST cadastral records preserve PID, volume, folio and UFI source fields.
ACTACTGOV BLOCK records preserve legal block, section, division, district and lifecycle context.
RelationshipsLegal/native identifiers outrank spatial containment. Geometry alone is evidence, not automatic proof of a legal address-to-parcel relationship.

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.

GET/v1/property?country=AU&address=...
GET/v1/property/by-location?country=AU&lat=...&lng=...
GET/v1/parcel-geometry?country=AU&parcel=...
GET/v1/auth/usage
GET/v1/health

Use 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.

illustrative response shapecoverage-aware
{
  "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": "…"
  }
}
The example above is illustrative of the country contract, not a promise that every response uses exactly those fields. Preserve the actual response envelope and coverage objects returned by the promoted production route.

Current jurisdiction state

ScopeVerified product stateProduction source direction
Australia nationalAddress baseline completeG-NAF · 16,970,406
QueenslandCadastral baseline completeQSCF · 2,156,480 lot parcels
VictoriaCadastral baseline completeVicmap · 4,303,714 parcel records
TasmaniaCadastral baseline completeLIST · 439,539 cadastral parcels
ACTCadastral baseline completeACTGOV BLOCK · 152,986 legal blocks
New South WalesNext promotion · source revision gatedNSW Land Parcel Property Theme
WA / SA / NTNational address live · deeper cadastre gatedAuthoritative 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.

RESTCountry-scoped production requests through the global PropData edge.
MCPCustomer-safe OAuth MCP for supported AI clients where the promoted tool contract applies.
BulkEnterprise extracts and graph delivery for state or national workflows.
CustomWorkflow-specific endpoints, white-label delivery and integration contracts for enterprise teams.