# Suumo Japan Real Estate Scraper (`fruitful_quintessence/suumo-japan-real-estate-scraper`) Actor

Scrape Japan real estate listings from SUUMO (Recruit). Used condominium and rental listings with price, address, area, layout, station.

- **URL**: https://apify.com/fruitful\_quintessence/suumo-japan-real-estate-scraper.md
- **Developed by:** [atushi ino](https://apify.com/fruitful_quintessence) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 results

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/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

## SUUMO Japan Real Estate Scraper

Scrape real estate listings from [SUUMO](https://suumo.jp), Japan's largest property portal (operated by Recruit). Extract used condominium (中古マンション) and rental (賃貸) listings with prices, addresses, and direct detail-page URLs.

### Output Sample

```json
{
  "title": "ハイツ烏山",
  "address": "東京都世田谷区...",
  "price_man": "3880",
  "detail_url": "https://suumo.jp/ms/chuko/tokyo/sc_setagaya/nc_20430875/",
  "mode": "ms_chuko"
}
```

### Input

| Field | Type | Description | Default |
|-------|------|-------------|---------|
| `mode` | select | `ms_chuko` (used condominium) or `chintai` (rental) | `ms_chuko` |
| `pref` | string | Prefecture slug (tokyo, kanagawa, osaka...) | `tokyo` |
| `city` | string | City/ward slug (setagaya, shibuya, minato...) | `setagaya` |
| `maxItems` | integer | Max listings to return | 20 |
| `includeDetails` | boolean | Fetch each detail page for full property specs (management fee, repair reserve, orientation, land use, parking) | false |

When `includeDetails=true`, each result gains a `detail` object with fields like: 管理費 (management fee), 修繕積立金 (repair reserve), 向き (orientation), 用途地域 (land use zone), 駐車場 (parking), 総戸数 (total units), 敷地の権利形態 (land rights), リフォーム (renovation).

### Use Cases

- **Real estate market research** — track listing prices by ward for investment analysis
- **Price monitoring** — detect price drops on specific properties
- **Relocation intelligence** — aggregate listings for overseas buyers of Japanese property
- **Data enrichment** — feed property data into CRMs or market dashboards

### Pricing

Pay-per-result. Actor Start $0.00005 + $0.001 per listing result.

### Limitations

- Scrapes the first page of each city/ward listing (~20 results per page).
- Returns listing-page summary fields (title, address, price). Full detail fields (floor plan, land area, structure) require fetching each detail URL separately.
- Some prefecture/city slugs may need verification against SUUMO's URL scheme.

### Changelog

- 0.1 — Initial release (used condominium + rental listing scrape).

# Actor input Schema

## `mode` (type: `string`):

ms\_chuko = used condominiums, chintai = rental apartments

## `pref` (type: `string`):

Prefecture slug (tokyo, kanagawa, osaka, etc.)

## `city` (type: `string`):

City or ward slug (setagaya, shibuya, minato, etc.)

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

Maximum number of listings to return

## `statsMode` (type: `boolean`):

Return price statistics (count/min/max/avg/median) instead of raw listings. Ideal for market price APIs.

## `maxPages` (type: `integer`):

Number of listing pages to crawl in statsMode (each page ~20 results)

## `includeDetails` (type: `boolean`):

Fetch each listing's detail page to extract full property specs (management fee, repair reserve, orientation, land use, parking, etc.). Slower: adds one request per listing.

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

Apify proxy configuration (auto recommended on free plan)

## Actor input object example

```json
{
  "mode": "ms_chuko",
  "pref": "tokyo",
  "city": "setagaya",
  "maxItems": 20,
  "statsMode": false,
  "maxPages": 1,
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `title` (type: `string`):

Listing title

## `price` (type: `string`):

Price (JPY man) or rent

## `price_man` (type: `string`):

Numeric price in man-yen

## `address` (type: `string`):

Property address

## `area` (type: `string`):

Floor area

## `layout` (type: `string`):

Room layout

## `built` (type: `string`):

Year built

## `station` (type: `string`):

Nearest station and walk time

## `detail_url` (type: `string`):

Detail page URL

## `mode` (type: `string`):

Listing type

# 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 = {
    "mode": "ms_chuko",
    "pref": "tokyo",
    "city": "setagaya",
    "maxItems": 20,
    "statsMode": false,
    "maxPages": 1,
    "includeDetails": false,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("fruitful_quintessence/suumo-japan-real-estate-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 = {
    "mode": "ms_chuko",
    "pref": "tokyo",
    "city": "setagaya",
    "maxItems": 20,
    "statsMode": False,
    "maxPages": 1,
    "includeDetails": False,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("fruitful_quintessence/suumo-japan-real-estate-scraper").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 '{
  "mode": "ms_chuko",
  "pref": "tokyo",
  "city": "setagaya",
  "maxItems": 20,
  "statsMode": false,
  "maxPages": 1,
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call fruitful_quintessence/suumo-japan-real-estate-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fruitful_quintessence/suumo-japan-real-estate-scraper"
        }
    }
}

```

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/FzQlnqfCsMfSlRG9j/builds/pYehQnDp1IyTREDye/openapi.json
