# EdgeProp Singapore Property Scraper (`hipersoft/edgeprop-scraper`) Actor

Scrape EdgeProp Singapore property listings for sale and rent: price, address, beds, baths, size, PSF and URL.

- **URL**: https://apify.com/hipersoft/edgeprop-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** Real estate, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.002 / listing scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## EdgeProp Singapore Property Scraper — Listings, PSF, Tenure & Agents

Scrape **EdgeProp Singapore** property listings for **sale or rent** into clean **JSON, CSV, Excel or XML**. Get **price, project, property type, price per sqft (PSF), floor size, tenure, district, built year, agent and listing URL** for every listing. Fast and reliable, ideal for Singapore property research and market dashboards.

![EdgeProp Scraper input — listing type, property type and max items in the Apify Console](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/edgeprop-scraper-input.png?v=2)

### What does EdgeProp Scraper do?

This EdgeProp scraper collects public Singapore property listings into a structured dataset. Choose sale or rent and a property type, set a limit, and it returns a flat record per listing with pricing, size, tenure, location and agent details. Use it for price and PSF analysis, agent lead lists and investment tracking, and export the results in any format the Apify platform supports.

### What data can you scrape from EdgeProp?

| Data point | Description |
| --- | --- |
| Project / listing title | The project or listing name. |
| Listing id & URL | Unique listing id and direct listing URL. |
| Price & PSF | Asking price and price per square foot. |
| Property type & class | Property type (condo, HDB, landed, etc.) and class. |
| Size | Floor size in square feet. |
| Tenure & built year | Freehold/leasehold tenure and year built. |
| District & locality | Postal district and locality name. |
| Bedrooms & bathrooms | Room counts where listed. |
| Agent | Agent name and profile URL. |
| Exclusive flag | Whether the listing is marked exclusive. |

### Use cases

- **Price & PSF analysis** — benchmark asking prices and price per sqft by district or project.
- **Agent lead lists** — build lists of active listing agents and their listings.
- **Market dashboards** — power a Singapore property dashboard that refreshes on a schedule.
- **Investment tracking** — monitor listings by property type, tenure or locality.
- **Dataset building** — assemble a structured feed of Singapore property listings.

### How to scrape EdgeProp data

1. Add **EdgeProp Scraper** to your Apify account and open its input.
2. Choose a **listingType** (`sale` or `rent`).
3. Pick a **propertyType** (all, condo, HDB, landed, commercial, industrial) and set **maxItems**.
4. Click **Run**.
5. Export the results as JSON, CSV, Excel or XML, or fetch them through the Apify API.

### Input

```json
{ "listingType": "sale", "propertyType": "condo", "maxItems": 200 }
```

| Field | Description |
| --- | --- |
| `listingType` | `sale` or `rent`. |
| `propertyType` | `property` (all), `condo`, `hdb`, `landed`, `commercial` or `industrial`. |
| `maxItems` | Maximum number of listings to collect. |

### What you get

One record per listing, ready to export to CSV, Excel, JSON or XML.

![EdgeProp Scraper output example — property listings with price, PSF and tenure as structured JSON](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/edgeprop-scraper-output.png?v=5)

```json
{
  "id": "m_2169471",
  "propertyClass": "residential",
  "title": "THE EDGE ON CAIRNHILL",
  "price": 5580000,
  "propertyType": "Condominium",
  "pricePsf": 2618,
  "sizeSqft": 2131,
  "builtYear": null,
  "tenure": "Freehold",
  "district": "D9",
  "locality": "Cairnhill / Killiney / Leonie Hill",
  "bedrooms": "3",
  "bathrooms": "3",
  "isExclusive": false,
  "agent": "Watson Poh",
  "agentUrl": "https://www.edgeprop.sg/property-agents/...",
  "url": "https://www.edgeprop.sg/listing/...",
  "listingType": "sale",
  "sourceUrl": "https://www.edgeprop.sg/...",
  "collectedAt": "2026-07-30T12:00:00.000Z"
}
```

#### Output schema

| Field | Type | Description |
| --- | --- | --- |
| `id` | string | Unique listing id. |
| `propertyClass` | string | Broad property class (e.g. residential, commercial). |
| `title` | string | Project or listing title. |
| `price` | integer | Asking price. |
| `propertyType` | string | Property type label (e.g. Condominium, HDB). |
| `pricePsf` | integer | Price per square foot. |
| `sizeSqft` | integer | Floor size in square feet. |
| `builtYear` | integer | Year the property was built (null when unknown). |
| `tenure` | string | Freehold or leasehold tenure. |
| `district` | string | Singapore postal district code. |
| `locality` | string | Locality / neighbourhood name. |
| `bedrooms` | string | Number of bedrooms. |
| `bathrooms` | string | Number of bathrooms. |
| `isExclusive` | boolean | True when the listing is marked exclusive. |
| `agent` | string | Listing agent name. |
| `agentUrl` | string (URL) | Agent profile URL. |
| `url` | string (URL) | Direct listing URL. |
| `listingType` | string | Whether the listing is for sale or rent. |
| `sourceUrl` | string (URL) | Source page URL for the listing. |
| `collectedAt` | string (ISO date) | Timestamp when the listing was collected. |

### Need more Singapore property data?

- [PropertyGuru Scraper](https://apify.com/hipersoft/propertyguru-scraper) — Singapore/SEA property listings with price and agent data.
- [99.co Scraper](https://apify.com/hipersoft/99co-scraper) — 99.co property listings and agent details.
- [Crexi Scraper](https://apify.com/hipersoft/crexi-scraper) — US commercial real estate listings.

### FAQ

**Do I need an account or API key?**
No. There is no login or key — just set your inputs and click Run.

**How many listings can I scrape?**
As many as you set with `maxItems`.

**Can I scrape both sale and rental listings?**
Yes — choose `sale` or `rent` with the `listingType` input.

**How fresh is the data?**
Every listing is scraped live at the moment the run executes.

**What export formats are available?**
JSON, CSV, Excel and XML, plus programmatic access through the Apify API.

**Can I connect this to my other tools?**
The EdgeProp Scraper can be connected with almost any cloud service or web app thanks to [integrations on the Apify platform](https://apify.com/integrations). It works with [Make](https://apify.com/integrations/make), [Zapier](https://apify.com/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), [Airbyte](https://docs.apify.com/platform/integrations/airbyte), [GitHub](https://docs.apify.com/platform/integrations/github), [Google Drive](https://docs.apify.com/platform/integrations/drive) and [many more](https://apify.com/integrations), plus the [Apify API](https://docs.apify.com/api/v2), JavaScript/Python clients and MCP. Or use [webhooks](https://docs.apify.com/platform/integrations/webhooks) to trigger an action whenever a run finishes.

**Is scraping EdgeProp legal?**
This actor collects only publicly available listing data. You are responsible for how you use it and for complying with EdgeProp's terms.

### Related Actors

- [PropertyGuru Scraper](https://apify.com/hipersoft/propertyguru-scraper)
- [99.co Scraper](https://apify.com/hipersoft/99co-scraper)
- [Crexi Scraper](https://apify.com/hipersoft/crexi-scraper)

### Notes

Original clean-room implementation. Returns only public listing data; you are responsible for compliance with EdgeProp's terms. Not affiliated with EdgeProp.

# Actor input Schema

## `listingType` (type: `string`):

Sale or rent listings.

## `maxItems` (type: `integer`):

Maximum listings to scrape.

## `debug` (type: `boolean`):

Dump page diagnostics for development.

## `proxyConfiguration` (type: `object`):

Proxy (defaults to Apify RESIDENTIAL, SG).

## Actor input object example

```json
{
  "listingType": "sale",
  "maxItems": 60,
  "debug": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `results` (type: `string`):

The scraped results as dataset items.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/edgeprop-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/edgeprop-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call hipersoft/edgeprop-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=hipersoft/edgeprop-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/4VMMBGQR6hcdKaLtn/builds/GTktVeEvrE2Rrtg2A/openapi.json
