# SUUMO Scraper — Japan Rental Listings with Agent Contacts (`noe-data/suumo-scraper`) Actor

Scrape Japanese rental property listings from SUUMO: rent, deposit, layout, floor area, station walk time, plus the listing agency's name, phone and licence.

- **URL**: https://apify.com/noe-data/suumo-scraper.md
- **Developed by:** [Toru Tatsumi](https://apify.com/noe-data) (community)
- **Stats:** 2 total users, 1 monthly users, 50.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## SUUMO Scraper — Japan Rental Listings with Agent Contacts

Scrape rental property listings from **SUUMO** (suumo.jp), Japan's largest real-estate portal, and get
the **listing agency's contact details** along with every room: company name, phone number, opening
hours and real-estate licence number.

Point it at any SUUMO search-results URL — set your filters on the site, paste the URL, run.
Pagination is followed automatically.

### What you get

One item per **room** (a building usually holds several rooms, each with its own rent and layout).

| Field | Example | Notes |
|---|---|---|
| `buildingName` | アイメックス北参道 | Building name as shown on SUUMO |
| `category` | 賃貸マンション | Rental apartment / mansion / house |
| `address` | 東京都渋谷区千駄ヶ谷３ | Ward-level address from the listing |
| `stations[]` | line, station, walkMinutes | Up to 3 nearest stations, walk time parsed to an integer |
| `buildingAge` / `buildingAgeText` | 0 / 新築 | Years since construction; 0 for newly built |
| `structure`, `floorsTotal` | 地下1地上4階建, 4 | |
| `floor` | 3階 | Floor of this room |
| `rentYen` | 177000 | Parsed to yen — `17.7万円` becomes `177000` |
| `adminFeeYen`, `depositYen`, `gratuityYen` | 15000, null, null | `null` when the listing shows `-` |
| `layout` | 1LDK | |
| `areaSqm` | 26.26 | Square metres as a number |
| `url` | https://suumo.jp/chintai/jnc\_000109871755/ | Room page |
| `agentName` | グランデ新宿店 (株)グランデ | Listing agency (with `fetchAgentContacts`) |
| `agentPhone` | 03-5338-5960 | Agency phone number |
| `agentHours` | 10：00～19：00／定休日：年中無休 | |
| `agentLicense` | 国土交通大臣（１）第１１０９３号 … | Real-estate licence number |
| `direction`, `buildingType`, `constructionType`, `builtYearMonth` | 北東, マンション, 鉄筋コン, 2026年9月 | From the room page |

### What you do not get

- No sale listings — this Actor covers rentals (`/chintai/`) only.
- No floor plans, photos or map coordinates.
- No data behind a login, and no personal data: `agentPhone` is the agency's published business number,
  not a private one.
- Fields shown as `-` on SUUMO come back as `null`. That is the listing, not a scraping failure.

### Measured performance

Measured on 2026-09-23 against 東京都渋谷区 rentals, from a single machine with no proxy:

- One results page returned **75 rooms** parsed in **3.2 s**.
- With `fetchAgentContacts` enabled: **10 rooms in 23.3 s** — about **2.3 s per room**, which includes
  the built-in 1 s politeness delay.
- Field coverage over those 10 rooms: rent, layout, area, licence, direction **10/10**;
  agency name **10/10**; agency phone **9/10**.

Without `fetchAgentContacts` the Actor only loads results pages, so roughly 75 rooms per request.

### Input examples

Default (no input needed — just press Start):

```json
{ "startUrls": [{ "url": "https://suumo.jp/chintai/tokyo/sc_shibuya/" }] }
```

Several wards, listings only, no agency lookup:

```json
{
  "startUrls": [
    { "url": "https://suumo.jp/chintai/tokyo/sc_shinjuku/" },
    { "url": "https://suumo.jp/chintai/tokyo/sc_minato/" }
  ],
  "maxItems": 2000,
  "fetchAgentContacts": false
}
```

Agency prospecting — fewer rooms, every contact:

```json
{
  "startUrls": [{ "url": "https://suumo.jp/chintai/tokyo/sc_shibuya/" }],
  "maxItems": 300,
  "fetchAgentContacts": true,
  "proxyConfiguration": { "useApifyProxy": true }
}
```

### Output sample

Real output, unedited:

```json
{
  "buildingName": "アイメックス北参道",
  "category": "賃貸マンション",
  "address": "東京都渋谷区千駄ヶ谷３",
  "stations": [
    { "line": "東京メトロ副都心線", "station": "北参道駅", "walkMinutes": 4 },
    { "line": "ＪＲ中央線", "station": "千駄ケ谷駅", "walkMinutes": 9 },
    { "line": "ＪＲ山手線", "station": "原宿駅", "walkMinutes": 12 }
  ],
  "buildingAge": 0,
  "buildingAgeText": "新築",
  "structure": "地下1地上4階建",
  "floorsTotal": 4,
  "floor": "3階",
  "rentYen": 177000,
  "adminFeeYen": 15000,
  "depositYen": null,
  "gratuityYen": null,
  "layout": "1LDK",
  "areaSqm": 26.26,
  "url": "https://suumo.jp/chintai/jnc_000109871755/",
  "agentName": "グランデ新宿店 (株)グランデ",
  "agentPhone": "03-5338-5960",
  "agentHours": "10：00～19：00（時間外対応出来る場合有り）／定休日：年中無休（年末年始などを除く）",
  "agentLicense": "国土交通大臣（１）第１１０９３号 / （公社）全日本不動産協会東京都本部会員",
  "direction": "北東",
  "buildingType": "マンション",
  "constructionType": "鉄筋コン",
  "builtYearMonth": "2026年9月"
}
```

### How to chain it

- Feed the dataset into a spreadsheet or BI tool through the Apify API or a webhook.
- Run it on a schedule and diff `url` between runs to watch new listings and price changes in one ward.
- Pair it with Google Search Scraper when you want to start from company names rather than SUUMO URLs.

### Notes on fair use

This Actor reads only pages that are publicly visible without logging in, keeps at least one second
between requests, and stops instead of retrying when the site answers with HTTP 403 or 429. It reads
`robots.txt` on start-up and skips paths that are disallowed. Check SUUMO's terms of service before
using the data commercially, and follow any request from the site owner to stop.

# Actor input Schema

## `startUrls` (type: `array`):

Search-result pages from suumo.jp (rental listings). Open SUUMO, set your filters (area, rent, layout), then paste the URL of the results page. Pagination is followed automatically.

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

Stop after this many rooms. One building usually holds several rooms and each room is one item.

## `fetchAgentContacts` (type: `boolean`):

Open each room page to also get the listing agency: company name, phone number, opening hours and real-estate licence number. Adds about 1.5 seconds per room.

## `requestDelaySeconds` (type: `integer`):

Seconds to wait between requests. Values below 1 are raised to 1 — this scraper is deliberately polite.

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

Apify Proxy is recommended for larger runs.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://suumo.jp/chintai/tokyo/sc_shibuya/"
    }
  ],
  "maxItems": 100,
  "fetchAgentContacts": true,
  "requestDelaySeconds": 1,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `listings` (type: `string`):

No description

# 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 = {
    "startUrls": [
        {
            "url": "https://suumo.jp/chintai/tokyo/sc_shibuya/"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("noe-data/suumo-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 = {
    "startUrls": [{ "url": "https://suumo.jp/chintai/tokyo/sc_shibuya/" }],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("noe-data/suumo-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 '{
  "startUrls": [
    {
      "url": "https://suumo.jp/chintai/tokyo/sc_shibuya/"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call noe-data/suumo-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,noe-data/suumo-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/yQLkkj3nqtALezAKT/builds/760p8DRTj5V2v31t2/openapi.json
