Market Metrics
Charged/markets/{market_id}/metricsA set of metrics for a single market and data month.
Parameters
market_idstringRequiredMarket identifier from the markets reference list.
monthstring (YYYY-MM)RequiredData month. Pin it for reproducible results.
metricsstring[]RequiredComma-separated metric codes, for example dsr3,yield.
| Name | Type | Required | Description |
|---|---|---|---|
market_id | string | Yes | Market identifier from the markets reference list. |
month | string (YYYY-MM) | Yes | Data month. Pin it for reproducible results. |
metrics | string[] | Yes | Comma-separated metric codes, for example dsr3,yield. |
- •Returns each requested metric and its value for that market and month.
- •You are not charged for a metric, market and month combination where no data exists.
curl "https://api.suburbdata.com.au/v1/markets/0812-leanyer-house/metrics?month=2026-07&metrics=dsr3,yield" \
-H "Authorization: Bearer sd_live_xxxxxxxxxxxxxxxx"{
"market_id": "0812-leanyer-house",
"month": "2026-07",
"metrics": [
{ "code": "dsr3", "name": "DSR3", "value": 71 },
{ "code": "yield", "name": "Yield", "value": 6.1 }
],
"meta": { "charged": true, "mode": "live" }
}