Developer Docs
Start here for API setup, authentication, endpoint usage, and troubleshooting.
Quick Start
- Create an API consumer and issue credentials.
- Call autocomplete with Basic auth.
- Use PID from autocomplete to hydrate full address details.
curl "http://10.0.1.36:8082/v1/autocomplete?q=123+king+st&country=AU" \ -H "Authorization: Basic <base64(key_id:secret_key)>"
Authentication
All v1 endpoints use Basic auth with key_id:secret_key. Browser credentials must include an allowed origin policy.
Core Endpoints
GET /v1/autocompletesearch suggestions by partial input.GET /v1/addresses/{pid}resolve a selected PID to full address.GET /v1/datasetread active dataset/version metadata.
Error Format
{"error":{"code":"invalid_request","message":"country is required"}}