Property - Valuation
Agent quoting accuracy
GET
/v1/properties/{gnaf_id}/valuation/agent-quoting50¢ per callQuoting accuracy of the property's current listing agency — cohort, median guide-vs-sold deviation, underquote rate and its 5 most-recent tracked sales. Only while the property is listed for sale with a tracked agency.
Price: 50¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
gnaf_idstringrequiredQuery parameters
None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.
Responses
Successful Response
application/json
AgentQuotingfields returned to you
agency_namestringalways returnedCurrent listing agency.
cohortstringalways returnedQuoting-behaviour cohort label (e.g. 'Severe Underquoter').
median_deviation_pctnumberalways returnedMedian sold-vs-guide deviation across tracked sales (%).
underquote_rate_pctnumberalways returnedShare of tracked sales that sold above guide (%).
total_salesintegeralways returnedNumber of tracked transparent sales.
asking_priceintegermay be nullCurrent asking guide for this listing (AUD).
likely_sale_priceintegermay be nullAsking guide adjusted by the agency's median deviation (AUD).
recent_salesarray of AgentRecentSalealways returnedUp to 5 most-recent tracked sales.
GET
/v1/properties/{gnaf_id}/valuation/agent-quotingcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/valuation/agent-quoting' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"agency_name": "Elders Mt Gambier RLA 62833",
"asking_price": 450000,
"cohort": "Severe Underquoter",
"likely_sale_price": 523350,
"median_deviation_pct": 16.3,
"recent_sales": [
{
"address": "12 Chauvel Street, Mount Gambier",
"diff_pct": 53.9,
"guide_price": 287500,
"sold_date": "2026-03-19",
"sold_price": 442500
}
],
"total_sales": 4,
"underquote_rate_pct": 50
}
}Successful Response200
application/json
