# SG Property Data — Singapore Landed House Market Segment Price Stats

> SG Property Data — Singapore Landed House Market Segment 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 price statistics for Singapore landed residential properties within a specified market segment (CCR, RCR, or OCR), optionally filtered by tenure type.

## Facts

- Endpoint: GET https://sgpropertydata.com/private/landed/segments/:segment/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-singapore-landed-house-market-segment-price-stats-2505c597
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KPWpiCOShXhSl90KnO6xf

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-market-segment-price-stats-2505c597
```

Example prompt: What are the current price stats for freehold landed houses in Singapore's CCR — I want to see average prices and any trend data available.

## When to prefer this

Use this endpoint when you need aggregated price statistics for Singapore landed houses scoped to a specific URA market segment (CCR, RCR, or OCR). Prefer this over condo or HDB endpoints when the user is specifically asking about landed residential properties (bungalows, semi-detached, terraced). Use when segment-level granularity is needed rather than district- or project-level data.

## Known failure modes

- Invalid segment value (not CCR, RCR, or OCR) returns 400 or error response
- Invalid tenure enum value returns validation error
- No data available for a rare tenure/segment combination may return empty stats
- API payment failure (x402) if USDC balance insufficient
- Network timeout or 5xx if upstream data pipeline is stale

## How this service works

Singapore landed-house market-segment price stats

## Output

Returns calculated price statistics for landed residential properties in the specified Singapore market segment (CCR, RCR, or OCR), including metrics such as median/average PSF prices, price trends, and CAGR, optionally broken down by tenure (Freehold, Freehold-equivalent, Leasehold, or blended ALL).

## 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": [
      "segment"
     ],
     "properties": {
      "segment": {
       "type": "string",
       "description": "CCR, RCR, or OCR"
      }
     }
    },
    "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-market-segment-price-stats-2505c597/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)
