# SG Property Data — Landed Project Rental Yield

> SG Property Data — Landed Project Rental Yield 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 rental yield (percent per year) for a specific Singapore landed residential project, with yearly breakdown and confidence rating.

## Facts

- Endpoint: GET https://sgpropertydata.com/private/landed/projects/%7Bproject%7D/rental-yield
- 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-rental-yield-30075ae3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fIGuPShQzz8NZYDP9owOq

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-rental-yield-30075ae3
```

Example prompt: What's the current annual rental yield for the Bukit Timah landed project in Singapore — and can you show me the yearly breakdown?

## When to prefer this

Use this endpoint when you need rental yield specifically for a named Singapore landed residential project (not condos or HDB), and want a computed metric with yearly granularity and confidence scoring rather than raw transaction data.

## Known failure modes

- Unknown or misspelled project name returns 404 or empty result
- Project has insufficient transaction data, resulting in low confidence or null yield
- Rate limiting or payment failure (x402) if USDC payment is not processed correctly
- Stale data if URA/HDB source records have not been recently updated

## 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 rental yield value in percent per year (e.g. 3.3%), a confidence rating (low/medium/high), and an array of per-year yield percentages showing the historical breakdown.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rental_yield": {
   "unit": "percent_per_year",
   "value": 3.3,
   "confidence": "medium"
  },
  "yearly_yield_breakdown": [
   {
    "year": 2025,
    "yield_pct": 3.3
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sg-property-data-landed-project-rental-yield-30075ae3/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)
