# SG Property Data — Landed Project Price Stats

> SG Property Data — Landed Project 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-16).

Returns calculated price statistics (CAGR, PSF percentiles, median, year-on-year change) for a specific Singapore private landed residential project, derived from URA transaction records.

## Facts

- Endpoint: GET https://sgpropertydata.com/private/landed/projects/%7Bproject%7D/stats
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sg-property-data-landed-project-price-stats-bb04bcdf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y_V4JgkQ9-YhomoEJZuFb

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-landed-project-price-stats-bb04bcdf
```

Example prompt: Can you pull the price stats for the Singapore landed project 'Bukit Timah Estate' — I want to see the CAGR, median PSF, and year-on-year price change?

## When to prefer this

Use this endpoint when you need pre-computed, aggregated price analytics (CAGR, PSF percentiles, YoY trends) for a specific Singapore private landed residential project by name, rather than raw transaction data. Prefer this over general market-segment endpoints when project-level granularity is needed, and over HDB endpoints when the subject is private landed property specifically.

## Known failure modes

- Unknown or misspelled project name returns empty or 404 response
- Project with insufficient transaction history may return low-confidence or null CAGR
- Rate limiting or payment failure via x402 protocol returns 402 Payment Required
- Malformed project parameter returns 400 Bad Request
- Project name with special characters may need URL encoding

## 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 the project's compound annual growth rate (CAGR) in percent per year with a confidence rating, a price snapshot with P25, P75, and median PSF plus transaction count, and a yearly breakdown array showing median PSF and year-on-year change percentage for each year.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## 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-landed-project-price-stats-bb04bcdf/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)
