Welcome back

Log in to your Microburbs account

Forgot password?
or continue with

By continuing, you agree to our Terms of Service and Privacy Policy.

Unlock the power of property data

  • Access 5000+ property and suburb metrics
  • Detailed suburb and property reports
  • Risk and gentrification analysis
  • Interactive heat maps across Australia

"Microburbs helped me find the perfect investment suburb with data I couldn't find anywhere else."

Sarah M. Property Investor

Welcome to Microburbs!

Help us personalise your experience

Opening secure checkout

Please wait while we connect to our payment provider. Do not refresh or close this page.

Get API Access

Request access to integrate Microburbs data into your applications

Request Access
V1.0.2
GET Market Insights by Pocket
http://127.0.0.1:2026/api/property/pocket
Shows the local pocket data for the property and compares it with surrounding SA1 areas, including growth rates and median prices. Optionally includes geometric shape data in GeoJSON format.
Important: The id parameter refers to the property's GNAF ID.
You can retrieve this value from Get GNAF_ID (Geocoder) API Endpoint. Click to see documentation

Parameters

Name Type Required Description
id text Required Property identifier (GnafID)
geojson boolean Optional Set to 'true' to include geometric shape data for each pocket (default: false)

Response Schema

Field Type Description
address string Full street address of the property
gnaf_id string The GNAF (Geocoded National Address File) identifier for the property
local_pocket object Market data for the property's immediate SA1 area
local_pocket.area_level string Area classification level (e.g., 'sa1')
local_pocket.area_name string SA1 identifier code for the property's location
local_pocket.date string Date of the data point
local_pocket.growth number Price growth percentage (as decimal, e.g., 1.95 means 95% growth)
local_pocket.metric string Type of metric being reported (e.g., 'median_price_per_pocket')
local_pocket.property_type string Type of property (house, unit)
local_pocket.value number Median property price in the local pocket
results array Array containing surrounding pocket data for comparison
results[].area_level string Area classification level (e.g., 'sa1')
results[].area_name string SA1 identifier code
results[].date string Date of the data point
results[].growth number Price growth as a multiplier (e.g., 2.37 means 237% growth, 0.47 means 47% growth)
results[].metric string Type of metric being reported (e.g., 'median_price_per_pocket')
results[].property_type string Type of property (house, unit)
results[].value number Median property price in the pocket
results[].geometry object GeoJSON geometry data for the SA1 area (only included when geojson=true)
local_pocket.geometry object GeoJSON geometry data for the property's local SA1 area (only included when geojson=true)

Request Examples

cURL
Python
JavaScript
curl -X GET "http://127.0.0.1:2026/api/property/pocket?suburb=Belmont%20North" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"

Response Example

Response
{ "address": "27 Arlington Street", "gnaf_id": "GANSW704074813", "local_pocket": { "area_level": "sa1", "area_name": "11101120618", "date": "2025-05-31", "growth": 1.95, "metric": "median_price_per_pocket", "property_type": "house", "value": 1180000 }, "results": [ { "area_level": "sa1", "area_name": "11101120609", "date": "2025-05-31", "growth": 1.5555555555555556, "metric": "median_price_per_pocket", "property_type": "house", "value": 805000 }, { "area_level": "sa1", "area_name": "11101120636", "date": "2025-05-31", "growth": 1.1748768472906403, "metric": "median_price_per_pocket", "property_type": "house", "value": 883000 }, { "area_level": "sa1", "area_name": "11101120634", "date": "2025-05-31", "growth": 1.2670807453416149, "metric": "median_price_per_pocket", "property_type": "house", "value": 730000 }, { "area_level": "sa1", "area_name": "11101120635", "date": "2025-05-31", "growth": 2.4285714285714284, "metric": "median_price_per_pocket", "property_type": "house", "value": 1950000 } ] }
Try it in Sandbox