99 API99.co ↗
Search and filter Singapore residential property listings from 99.co. Access condo directories, price ranges, floor area data, and listing counts via 2 endpoints.
What is the 99 API?
The 99.co API provides access to Singapore residential property listings across 2 endpoints, covering for-sale listings and a condo directory. The search_properties_for_sale endpoint returns paginated results with filtering by price range, floor area, and property category (condo, HDB, landed), while list_condos exposes an alphabetically ordered condo directory. Both endpoints return 20 results per page and include totals for building full result sets.
curl -X GET 'https://api.parse.bot/scraper/38c8b80a-f869-4bf3-9c9f-a714e416bdad/search_properties_for_sale?page=1&price_max=3000000&price_min=1000000&sort_field=price&sort_order=asc&floorarea_max=2000&floorarea_min=800&main_category=condo' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace 99-co-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: 99.co Property Search API — bounded, re-runnable; every call capped."""
from parse_apis._99_co_Property_Search_API import NinetyNineCo, PropertyCategory, SortField, SortOrder, SortBy, ParseError
client = NinetyNineCo()
# List condos starting with letter B, sorted alphabetically.
for condo in client.condos.list(sort_by=SortBy.ALPHABETICALLY, letter="b", limit=3):
print(condo.name, condo.tenure, condo.number_of_units)
# Take one condo for inspection.
item = client.condos.list(letter="c", limit=1).first()
if item:
print(item.name, item.listing_url, item.completed_at, item.developer)
# Search condos for sale filtered by price and category.
for listing in client.property_listings.search_for_sale(
main_category=PropertyCategory.CONDO,
price_min=1000000,
price_max=3000000,
sort_field=SortField.PRICE,
sort_order=SortOrder.ASC,
limit=3,
):
print(listing.address_name, listing.price_formatted, listing.area_size_formatted)
# Typed error handling around a real call.
try:
result = client.condos.list(letter="z", limit=1).first()
if result:
print(result.name, result.type)
except ParseError as e:
print("error:", e)
print("exercised: condos.list, property_listings.search_for_sale")
Search residential properties listed for sale in Singapore. Results are paginated in pages of 20. Supports filtering by property category (condo, HDB, landed), price range, and floor area range. Results can be sorted by price or price per square foot.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination (1-based). |
| price_max | integer | Maximum listing price in SGD. |
| price_min | integer | Minimum listing price in SGD. |
| sort_field | string | Field to sort results by. Omitted uses default relevance ordering. |
| sort_order | string | Sort direction. Used together with sort_field. |
| floorarea_max | integer | Maximum floor area in square feet. |
| floorarea_min | integer | Minimum floor area in square feet. |
| main_category | string | Property category filter. Omitted returns all categories. |
{
"type": "object",
"fields": {
"page": "current page number",
"total": "total number of matching listings",
"listings": "array of property listing objects",
"page_size": "number of listings per page (always 20)"
},
"sample": {
"data": {
"page": 1,
"total": 18551,
"listings": [
{
"id": "VeqQggVPwVm4xyyGZRehSz",
"psf": 1658.37,
"price": 1000000,
"tenure": null,
"bedrooms": 1,
"district": "19",
"latitude": null,
"area_size": 603,
"bathrooms": 1,
"longitude": null,
"photo_url": "https://pic2.99.co/v3/44gh4Hs7QVW8mqBnv5vpsG?text=Jane+Doe&sampling=lanczos&version=1&width=320&mode=fill&quality=80&signature=1bcfb691de262c34ed15cbee93718c26e705061e",
"agent_name": "Jane Doe",
"agent_phone": "+1 (555) 012-3456",
"listing_url": "/singapore/sale/property/property-in-singapore-condo-VeqQggVPwVm4xyyGZRehSz",
"address_name": "Watertown",
"completed_at": 2017,
"listing_type": "sale",
"sub_category": "Condo",
"main_category": "condo",
"psf_formatted": "S$ 1,658.37 psf",
"address_line_1": "Watertown",
"address_line_2": "71 Punggol Central · D19",
"date_formatted": "18 days ago",
"price_formatted": "S$ 1,000,000",
"area_size_formatted": "603 sqft"
}
],
"page_size": 20
},
"status": "success"
}
}About the 99 API
Searching For-Sale Listings
The search_properties_for_sale endpoint queries active residential listings on 99.co's Singapore marketplace. You can scope results by main_category (e.g. condo, HDB, landed), set price bounds with price_min and price_max in SGD, and filter by floor area using floorarea_min and floorarea_max in square feet. Results are sorted by passing a sort_field and sort_order — useful for ordering by price or price per square foot. The response includes a total count of matching listings, the current page, and an array of listings objects, each representing one property listing.
Browsing the Condo Directory
The list_condos endpoint exposes 99.co's condo and apartment directory, which is sorted alphabetically. Use the letter parameter (a–z or # for numeric names) to filter directory entries to a specific starting character. The response returns condos (an array of directory entries), page, page_size (always 20), and total_pages for the current letter filter — making it straightforward to walk the full directory programmatically.
Pagination and Coverage
Both endpoints use 1-based page numbering and return exactly 20 items per page. The search_properties_for_sale response exposes a total field so you can calculate page counts. The list_condos endpoint instead exposes total_pages directly. Coverage is limited to Singapore residential properties listed for sale on 99.co; rental listings and commercial properties are not in scope for these endpoints.
The 99 API is a managed, monitored endpoint for 99.co — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 99.co changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official 99.co API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Aggregate Singapore condo listings filtered by price range and floor area for a property comparison tool
- Track total listing counts by property category (HDB, condo, landed) across price bands
- Build a complete condo directory index by walking
list_condosletter by letter - Identify price-per-sqft outliers by sorting
search_properties_for_saleresults by that field - Seed a database of Singapore condos by paginating through the full
list_condosdirectory - Filter for large-footprint properties using
floorarea_minto surface listings above a threshold
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does 99.co have an official developer API?+
What does `search_properties_for_sale` return for each listing?+
listings array is a property listing object from 99.co's for-sale marketplace. The response also includes a total count of all matching results, the current page number, and a page_size of 20. Filtering parameters include price_min, price_max, floorarea_min, floorarea_max, and main_category.Does the API cover rental listings or commercial properties?+
search_properties_for_sale for active sale listings and list_condos for the condo directory. Rental listings and commercial properties are not included. You can fork this API on Parse and revise it to add an endpoint targeting rental or commercial listings.Can I filter `list_condos` by location or MRT station?+
list_condos endpoint supports filtering by starting letter (letter param) and page navigation only. Location or transit-based filtering is not available on this endpoint. You can fork the API on Parse and revise it to add location-based directory filtering if that data is accessible.How do I paginate through all results from `search_properties_for_sale`?+
total field with the count of all matching listings and page_size is always 20. Divide total by 20 (rounding up) to get the number of pages, then increment the page parameter from 1 up to that count to retrieve all results.