# SG Property Data — Singapore Landed House District Price Stats

> SG Property Data — Singapore Landed House 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-13).

Returns price statistics for private landed houses in a specific Singapore postal district, optionally filtered by tenure type

## Facts

- Endpoint: GET https://sgpropertydata.com/private/landed/districts/:district/stats
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sg-property-data-singapore-landed-house-district-price-stats-71885c58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4UxPb4z0JYILuNQqVRVVm

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-singapore-landed-house-district-price-stats-71885c58
```

Example prompt: What are the price stats for freehold landed houses in Singapore district 10? I want to see things like price trends and CAGR.

## When to prefer this

Use this endpoint when you need price statistics specifically for private landed houses (not condos or HDB) in a particular Singapore postal district. Prefer this over the market-segment sibling endpoint when you already know the district code and want district-level granularity. Use the tenure filter when comparing freehold versus leasehold landed property performance within a district.

## Known failure modes

- Invalid or non-existent district code returns an error or empty result
- District code not zero-padded or in wrong format may fail validation
- Tenure enum value not matching expected strings returns a 400 error
- No data available for a given district/tenure combination returns empty stats

## How this service works

Singapore landed-house district price stats

## Output

Returns calculated price statistics for private landed houses in the specified Singapore district, including metrics such as price trends, CAGR, and potentially median PSF values, optionally broken down by tenure (ALL, Freehold, Freehold-equivalent, or Leasehold).

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sg-property-data-singapore-landed-house-district-price-stats-71885c58/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)
