# SG Property Data — Singapore Condo Project Price Stats

> SG Property Data — Singapore Condo 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-15).

Returns price statistics for a specific Singapore private condominium project based on URA transaction records

## Facts

- Endpoint: GET https://sgpropertydata.com/private/condo/projects/:project/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-project-price-stats-ceeec8cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tkoOti5SLWWylcWinI5TY

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

Example prompt: Can you pull up the price stats for The Sail @ Marina Bay from sgpropertydata.com — I want to see transaction price trends and metrics for that condo project?

## When to prefer this

Use this endpoint when you need price statistics scoped to a single specific Singapore private condominium project by name. Prefer this over district-level or town-level endpoints when the user wants granular project-specific data rather than aggregated area trends. Ideal for comparing specific developments or drilling into a project's pricing history.

## Known failure modes

- Project name not found in URA records — returns 404 or empty result if the project slug doesn't match URA naming
- Incorrect project name formatting — requires exact URA project name, not common abbreviations or alternate spellings
- Payment failure — x402 micropayment of $0.005 USDC must succeed before data is returned
- No transaction data available for very new or illiquid projects — stats may be sparse or unavailable

## How this service works

Singapore condo project price stats

## Output

Returns computed price statistics for the specified Singapore condo project, including price trends, average/median PSF values, CAGR, and other market metrics derived from URA transaction records

## 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": [
      "project"
     ],
     "properties": {
      "project": {
       "type": "string",
       "description": "Project name as it appears in URA records"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-project-price-stats-ceeec8cc/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)
