# SG Property Data — Singapore Condo Project Rental Yield

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

Returns the rental yield for a specific Singapore private condominium project based on URA records

## Facts

- Endpoint: GET https://sgpropertydata.com/private/condo/projects/:project/rental-yield
- 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-rental-yield-ffda4de2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LduNrRNFos1SL-02D3-AZ

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-rental-yield-ffda4de2
```

Example prompt: What's the current rental yield for The Sail @ Marina Bay according to Singapore URA records?

## When to prefer this

Use this endpoint when you need rental yield specifically at the individual condo project level in Singapore, as opposed to district-wide or town-level aggregates. Ideal for investment due diligence on a specific development, comparing yield across named projects, or building property investment dashboards focused on Singapore private condominiums.

## Known failure modes

- Project name not found in URA records — returns 404 or empty result if the project name does not exactly match URA naming conventions
- Insufficient transaction data — project may have too few rental or sales transactions to compute a meaningful yield
- Malformed project path parameter — missing or incorrectly URL-encoded project name causes a 400 error
- Upstream URA data unavailability — service may return error if source data is stale or unavailable

## How this service works

Singapore condo project rental yield

## Output

Returns calculated rental yield data for the specified Singapore private condominium project, including yield percentage 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-rental-yield-ffda4de2/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)
