# Scrape HDB resale prices in Singapore

**Use case:** 

Extract official HDB resale flat transaction data from Singapore's government dataset. Structured price data. Pay per result.

## Input

```json
{
  "town": "",
  "flatType": "",
  "monthFrom": "",
  "monthTo": "",
  "datasetPeriods": [
    "2017-present"
  ],
  "maxResults": 5,
  "requestDelayMs": 300
}
```

## Output

```json
{
  "month": {
    "label": "Month",
    "format": "text"
  },
  "town": {
    "label": "Town",
    "format": "text"
  },
  "flatType": {
    "label": "Flat type",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "floorAreaSqm": {
    "label": "Area (sqm)",
    "format": "number"
  },
  "resalePrice": {
    "label": "Price SGD",
    "format": "number"
  },
  "pricePerSqftSGD": {
    "label": "PSF SGD",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [HDB Resale Transactions Singapore](https://apify.com/unfenced-group/hdb-resale-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/hdb-resale-scraper) to learn more, explore other use cases, and run it yourself.