# SG Property Data — Singapore Condo District Price Stats

> SG Property Data — Singapore 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 aggregated price statistics for private condominium transactions in a specific Singapore postal district, optionally filtered by tenure type.

## Facts

- Endpoint: GET https://sgpropertydata.com/private/condo/districts/:district/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-condo-district-price-stats-b57bbcd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tbZwb7GfjCCZkbThL7GDC

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-condo-district-price-stats-b57bbcd0
```

Example prompt: What are the price stats for freehold condos in Singapore District 10? I want to see the aggregated transaction metrics for that area.

## When to prefer this

Use this endpoint when you need district-level aggregated price statistics specifically for private condominiums in Singapore, and you know the two-digit postal district code. Prefer this over project-level endpoints when you want a market-wide view of a district rather than a specific development. Use the tenure filter to compare freehold vs leasehold segments within a district.

## Known failure modes

- Invalid district code returns 404 or empty result
- District code not in two-digit format causes validation error
- Unknown tenure enum value returns 400 bad request
- No transaction data available for a given district/tenure combination returns empty stats
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

Singapore condo district price stats

## Output

Aggregated price statistics for private condominiums in the specified Singapore district, including metrics such as median and average price per square foot, transaction volumes, and price trends, optionally segmented 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": [
      "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-condo-district-price-stats-b57bbcd0/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)
