Real Estate Search (Bulk) API

POST
/realestate_searches
LIVE

Bulk version of the real estate search endpoint that allows up to 50 address lookups to be performed in a single request.

Example Request

POST
request.json
key Auth: BearerAuth
{
  "date_from": "2020-01-01",
  "requests": [
    { "gnaf_id": "GAVIC421647320", "check_id": "asset_1" },
    { "full_address": "123 Main St, Sydney NSW", "check_id": "asset_2" }
  ]
}

Available Response Data

  • check_circle Batch Processing Status
  • check_circle Array of Address Results (Matched to your check_id)
  • check_circle Individual Property Listing Histories (Sales, Rentals, Pricing Data)
  • check_circle Individual Address Resolution Data

Request Schema

Field Name Type Required Description
date_from string No Date filter in YYYY-MM-DD format.
requests array Yes The list of address lookups to perform (uses standard address parameters).

Technical Use Cases

verified

Portfolio Analytics

Update the estimated value of an entire investment portfolio by querying multiple GNAF IDs in a single high-efficiency call.

Webhooks & Events

notifications
bulk-real-estate-completed

Receive a payload notification once all 50 property histories have been compiled and are ready for retrieval.

Compliance & Security

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

Common Questions

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

help_center General

What happens if one address in the bulk array fails?

add

The API will process the valid addresses and return an Address not found error specifically for the failed array objects, allowing the rest of your batch to succeed.

BACK TO TOP