# SG Property Data — Condo District Price Stats

> SG Property Data — Condo District Price Stats is a paid API for AI agents from sgpropertydata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns computed price statistics (median PSF, percentiles, CAGR, YoY trends) for Singapore private condo properties within a specified postal district, optionally filtered by tenure type.

## Facts

- Endpoint: GET https://sgpropertydata.com/private/condo/districts/%7Bdistrict%7D/stats
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sg-property-data-condo-district-price-stats-4ff045e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gWXwwas0DizKdp5NjeQ_R

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sg-property-data-condo-district-price-stats-4ff045e2
```

Example prompt: What are the current price stats for freehold condos in Singapore district 10 — specifically the median PSF, CAGR, and how prices have changed year over year?

## When to prefer this

Use this endpoint when you need computed, ready-to-use price metrics (CAGR, percentiles, YoY trends) for Singapore private condo properties at the district level, rather than raw transaction records. Prefer this over project-level endpoints when doing district-wide market benchmarking or investment return analysis across geographic zones.

## Known failure modes

- Invalid or non-existent district code returns 404 or empty result
- District with insufficient transaction volume may return low-confidence CAGR
- Unsupported tenure enum value returns 400 validation error
- Payment failure (insufficient USDC balance) returns 402 Payment Required
- Network timeout on computation-heavy historical aggregation

## How this service works

District, market-segment, town, and project-level price trends, CAGR, and rental yield for Singapore private residential property (condo and landed) and HDB resale flats, computed from URA and HDB records. REST and MCP access, priced per call for AI agents.

## Output

A JSON object containing: a snapshot with median, p25, and p75 price-per-square-foot (PSF) values and transaction count; a CAGR figure with confidence level and unit (percent per year); and a yearly breakdown array showing median PSF and YoY percentage change per year — all scoped to the requested district and optional tenure filter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "district"
     ],
     "properties": {
      "district": {
       "type": "string",
       "description": "Two-digit Singapore postal district code"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "tenure": {
       "enum": [
        "ALL",
        "Freehold",
        "Freehold-equivalent",
        "Leasehold"
       ],
       "type": "string",
       "description": "Defaults to ALL (blended across tenures) if omitted"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cagr": {
   "unit": "percent_per_year",
   "value": 4.8,
   "confidence": "high"
  },
  "snapshot": {
   "p25_psf": 2240,
   "p75_psf": 2510,
   "median_psf": 2387.5,
   "transaction_count": 41
  },
  "yearly_breakdown": [
   {
    "year": 2025,
    "median_psf": 2387.5,
    "yoy_change_pct": 4.2
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sg-property-data-condo-district-price-stats-4ff045e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sgpropertydata.com](https://www.zero.xyz/host/sgpropertydata.com/llms.txt)
