# 99property Spider (`getdataforme/99property-spider`) Actor

The 99property Spider is an Apify Actor that efficiently scrapes comprehensive property listings from 99property, extracting prices, titles, addresses, bedrooms, bathrooms, and images....

- **URL**: https://apify.com/getdataforme/99property-spider.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** Agents, Automation, Real estate
- **Stats:** 3 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.05 / actor start

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## 99property Spider

### Introduction

The 99property Spider is a powerful Apify Actor designed to scrape property listings from the 99property website, extracting comprehensive details such as prices, titles, addresses, and more. It enables users to gather real estate data efficiently for analysis, monitoring, or integration into business workflows. Whether you're a real estate professional, researcher, or developer, this tool simplifies data collection from property platforms with high reliability and speed.

### Features

- **Comprehensive Data Extraction**: Scrapes detailed property information including prices, titles, addresses, bedrooms, bathrooms, and images from 99property listings.
- **Multi-URL Support**: Handles multiple URLs in a single run, allowing batch processing of property pages for efficient data gathering.
- **High Reliability**: Built with robust error handling to ensure consistent performance even with varying page structures or network issues.
- **Fast and Scalable**: Optimized for quick scraping with Apify's infrastructure, supporting large-scale data collection without compromising speed.
- **Structured Output**: Delivers clean, JSON-formatted data that's easy to export to CSV, Excel, or integrate into databases and applications.
- **User-Friendly Configuration**: Simple input parameters make it accessible for both beginners and advanced users, with clear validation for URLs.
- **No Coding Required**: Fully managed Actor that runs on Apify's cloud, eliminating the need for local setup or technical expertise.

### Input Parameters

| Parameter | Type    | Required | Description                                                                 | Example |
|-----------|---------|----------|-----------------------------------------------------------------------------|---------|
| Urls      | array   | Yes      | An array of URLs pointing to 99property property listing pages to scrape. Must include at least one valid HTTP/HTTPS URL. | \["https://www.99property.com/property/suvarna-sutera"] |

### Example Usage

To run the 99property Spider, provide input in JSON format with the required URLs. Here's an example input:

```json
{
  "Urls": [
    "https://www.99property.com/property/suvarna-sutera",
    "https://www.99property.com/property/another-listing"
  ]
}
```

The Actor will process these URLs and output structured data like this:

```json
[
  {
    "price": null,
    "mortgage": null,
    "title": "Suvarna Sutera",
    "address": null,
    "badges": [],
    "last_updated": null,
    "bedrooms": null,
    "bathrooms": null,
    "land_area_m2": null,
    "building_area_m2": null,
    "images": []
  }
]
```

### Use Cases

- **Market Research and Analysis**: Gather data on property prices and features to analyze real estate trends in specific regions.
- **Competitive Intelligence**: Monitor competitors' listings to track pricing strategies and market positioning.
- **Price Monitoring**: Set up automated runs to track price changes on key properties for investment decisions.
- **Content Aggregation**: Collect property details for websites, apps, or reports that aggregate real estate information.
- **Academic Research**: Extract data for studies on housing markets, urban development, or economic indicators.
- **Business Automation**: Integrate scraped data into CRM systems, dashboards, or workflows for real estate agencies and investors.

### Installation and Usage

1. Search for "99property Spider" in the Apify Store
2. Click "Try for free" or "Run"
3. Configure input parameters
4. Click "Start" to begin extraction
5. Monitor progress in the log
6. Export results in your preferred format (JSON, CSV, Excel)

### Output Format

The Actor outputs data in JSON format as an array of objects, each representing a scraped property. Key fields include:

- `price`: The listed price (may be null if not available).
- `mortgage`: Mortgage-related information (often null).
- `title`: The property title, e.g., "Suvarna Sutera".
- `address`: Property address (may be null).
- `badges`: Array of badges or tags (empty if none).
- `last_updated`: Timestamp of last update (null if not specified).
- `bedrooms`: Number of bedrooms (null if not listed).
- `bathrooms`: Number of bathrooms (null if not listed).
- `land_area_m2`: Land area in square meters (null if unavailable).
- `building_area_m2`: Building area in square meters (null if unavailable).
- `images`: Array of image URLs (empty if none).

This structured format ensures easy parsing and integration.

### Support

For custom/simplified outputs or bug reports, please contact:

- Email: support@getdataforme.com
- Subject line: "custom support"
- Contact form: https://getdataforme.com/contact/

We're here to help you get the most out of this Actor!

# Actor input Schema

## `Urls` (type: `array`):

The urls for the spider.

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

Specifies proxy servers that will be used by the scraper in order to hide its origin.

## Actor input object example

```json
{
  "Urls": [
    "https://www.99.co/id/properti/rumah-dijual-4miliar-kertajaya-cp-1010577369"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

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

Scraped data items from dataset

# 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 = {
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/99property-spider").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 = { "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    } }

# Run the Actor and wait for it to finish
run = client.actor("getdataforme/99property-spider").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call getdataforme/99property-spider --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,getdataforme/99property-spider"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/0PmD8aguIwvqPIIT1/builds/3sbfzIhbTpQ74Wlem/openapi.json
