# Suumo Rental Listings Scraper — Japan Rentals in English (`quietparse/suumo-rental-listings-scraper`) Actor

Scrape rental listings (chintai) from Suumo, Japan's largest property portal, and get clean English-normalized JSON: rent in JPY, deposit/key money in months, layout, size, stations with walk times.

- **URL**: https://apify.com/quietparse/suumo-rental-listings-scraper.md
- **Developed by:** [Quietparse](https://apify.com/quietparse) (community)
- **Categories:** Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN 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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Rental Listings Scraper — Japan Real Estate Data in English

Scrape rental listings (賃貸 / chintai) from **Suumo (suumo.jp)** — Japan's largest
property portal — and get clean, **English-normalized JSON**: rent as a number in
JPY, deposit and key money converted to months, building age in years, stations
with walking minutes. No Japanese parsing needed on your side.

### What it does

- Crawls Suumo rental **search-result pages** (~30 listings per page request —
  fast and cheap; no detail-page fetches in v1).
- Normalizes every Japanese value format for you: `12.5万円` → `125000`,
  `新築` → age `0`, `敷金 25万円` → `deposit_months: 2`, `ワンルーム` → `1R`,
  `"-"` → `null`.
- Builds search URLs from prefecture/ward codes and rent bounds, or accepts any
  Suumo search URL you paste in.
- Typical uses: relocation research, Tokyo rent analytics, market dashboards,
  ML datasets, alerting on new listings in a ward.

### Input

| Field | Type | Default | Description |
| ----- | ---- | ------- | ----------- |
| `searchUrls` | array of strings | — | Full suumo.jp rental search-result URLs (`/jj/chintai/ichiran/FR301FC001/…`). When set, the fields below are ignored. |
| `prefectureCode` | string | `"13"` | Two-digit JIS prefecture code (13 = Tokyo). v1 URL builder covers Kanto (08–14); elsewhere use `searchUrls`. |
| `wardCodes` | array of strings | `["13101"]` | Five-digit JIS municipality codes (13101 Chiyoda, 13104 Shinjuku, 13113 Shibuya, …). |
| `minRentJpy` / `maxRentJpy` | integer | — | Optional monthly rent bounds in JPY. |
| `maxResults` | integer | `100` | Hard cap per run (max 10,000). **Free-plan users are capped at 50.** |
| `language` | string | `"en"` | Output normalization language — v1 is English only. |

Example input:

```json
{
    "searchUrls": ["https://suumo.jp/jj/chintai/ichiran/FR301FC001/?ar=030&bs=040&ta=13&sc=13101"],
    "maxResults": 100
}
````

### Output sample

One dataset item per advertised unit (a building can yield several):

```json
{
    "title": "Ａｎｖｉｌｌｅ神田司町",
    "rent_jpy": 125000,
    "admin_fee_jpy": 10000,
    "deposit_months": 1,
    "key_money_months": 1,
    "layout": "1K",
    "size_m2": 25.2,
    "floor": "9F",
    "building_age_years": 10,
    "building_type": "condo",
    "address_ja": "東京都千代田区神田司町２",
    "stations": [
        { "line": "東京メトロ丸ノ内線", "station": "淡路町駅", "walk_min": 4 },
        { "line": "JR山手線", "station": "神田駅", "walk_min": 7 }
    ],
    "detail_url": "https://suumo.jp/chintai/jnc_000091230001/?bc=100510000001",
    "scraped_at": "2026-06-10T12:00:00.000Z"
}
```

Field notes: `admin_fee_jpy`, `deposit_months`, `key_money_months`, `size_m2`,
`floor`, `building_age_years` are `null` when Suumo lists them as `-` (none /
not provided). `building_type` is `"condo"` (マンション), `"apartment"` (アパート)
or `"house"` (一戸建て). `walk_min` is `null` for bus/car access. Building names
and addresses are kept in the original Japanese — they are proper nouns you'll
need for maps and detail pages.

### Pricing & free-tier policy

This Actor uses **pay-per-event** pricing:

| Event | Price | When charged |
| ----- | ----- | ------------ |
| Actor start (`apify-actor-start`) | $0.005 | Automatically by Apify, once per run (per GB of memory) |
| Rental listing (`apify-default-dataset-item`) | $1.00 / 1,000 items | Automatically by Apify, per default-dataset item |

You only pay for listings that pass output-schema validation — malformed rows
are never charged. Set **Maximum cost per run** in Apify Console to cap spend;
the Actor stops gracefully at the limit and keeps everything scraped so far.

**Free tier — stated plainly:** users on the Apify free plan get up to
**50 listings per run**. The run still finishes successfully with a clear status
message when the cap is reached. Any paid Apify plan unlocks the full
10,000-listings-per-run limit.

### Limitations

- **Search-result pages only (v1).** Fields shown only on detail pages
  (exact floor plans, photos, fees breakdown, agency info) are not included yet.
- **Rental (chintai) only.** Sales listings (新築/中古マンション etc.) are out of scope.
- **Politeness by design:** pages are fetched sequentially with a randomized
  2–5 s delay, so very large runs take a while (~30 listings per fetch).
- The prefecture/ward URL builder covers the Kanto area block in v1; for other
  regions, paste full Suumo search URLs into `searchUrls`.
- Data is scraped from public Suumo pages; listings change constantly, so treat
  results as a snapshot (`scraped_at` is included on every row).

### Support

Found an issue or need a field added? Open an issue on the Actor page and it
will usually be handled within a few days.

# Actor input Schema

## `searchUrls` (type: `array`):

Full suumo.jp rental search-result URLs (the page you see after searching on suumo.jp → 賃貸). When set, the prefecture/ward/rent fields below are ignored. Tip: any URL containing /jj/chintai/ichiran/FR301FC001/ works.

## `prefectureCode` (type: `string`):

Two-digit JIS prefecture code (13 = Tokyo). Used only when no search URLs are given. v1 supports Kanto prefectures (08–14); elsewhere, paste full search URLs above.

## `wardCodes` (type: `array`):

Five-digit JIS municipality codes, e.g. 13101 = Chiyoda-ku, 13104 = Shinjuku-ku, 13113 = Shibuya-ku. Used only when no search URLs are given.

## `minRentJpy` (type: `integer`):

Optional lower rent bound, e.g. 80000. Used only when no search URLs are given.

## `maxRentJpy` (type: `integer`):

Optional upper rent bound, e.g. 200000. Used only when no search URLs are given.

## `maxResults` (type: `integer`):

Hard cap on listings pushed to the dataset (max 10,000). Free-plan users are capped at 50 results per run.

## `language` (type: `string`):

Output normalization language. v1 is English only.

## Actor input object example

```json
{
  "searchUrls": [
    "https://suumo.jp/jj/chintai/ichiran/FR301FC001/?ar=030&bs=040&ta=13&sc=13101"
  ],
  "prefectureCode": "13",
  "wardCodes": [
    "13101"
  ],
  "maxResults": 20,
  "language": "en"
}
```

# Actor output Schema

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

All extracted rental listings as structured JSON items (also exportable as CSV/Excel).

# 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 = {
    "searchUrls": [
        "https://suumo.jp/jj/chintai/ichiran/FR301FC001/?ar=030&bs=040&ta=13&sc=13101"
    ],
    "maxResults": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("quietparse/suumo-rental-listings-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 = {
    "searchUrls": ["https://suumo.jp/jj/chintai/ichiran/FR301FC001/?ar=030&bs=040&ta=13&sc=13101"],
    "maxResults": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("quietparse/suumo-rental-listings-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 '{
  "searchUrls": [
    "https://suumo.jp/jj/chintai/ichiran/FR301FC001/?ar=030&bs=040&ta=13&sc=13101"
  ],
  "maxResults": 20
}' |
apify call quietparse/suumo-rental-listings-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Suumo Rental Listings Scraper — Japan Rentals in English",
        "description": "Scrape rental listings (chintai) from Suumo, Japan's largest property portal, and get clean English-normalized JSON: rent in JPY, deposit/key money in months, layout, size, stations with walk times.",
        "version": "0.1",
        "x-build-id": "M1q97vhZycy5PUSLP"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/quietparse~suumo-rental-listings-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-quietparse-suumo-rental-listings-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/quietparse~suumo-rental-listings-scraper/runs": {
            "post": {
                "operationId": "runs-sync-quietparse-suumo-rental-listings-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/quietparse~suumo-rental-listings-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-quietparse-suumo-rental-listings-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchUrls": {
                        "title": "Suumo search URLs",
                        "type": "array",
                        "description": "Full suumo.jp rental search-result URLs (the page you see after searching on suumo.jp → 賃貸). When set, the prefecture/ward/rent fields below are ignored. Tip: any URL containing /jj/chintai/ichiran/FR301FC001/ works.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "prefectureCode": {
                        "title": "Prefecture code",
                        "type": "string",
                        "description": "Two-digit JIS prefecture code (13 = Tokyo). Used only when no search URLs are given. v1 supports Kanto prefectures (08–14); elsewhere, paste full search URLs above.",
                        "default": "13"
                    },
                    "wardCodes": {
                        "title": "Ward / municipality codes",
                        "type": "array",
                        "description": "Five-digit JIS municipality codes, e.g. 13101 = Chiyoda-ku, 13104 = Shinjuku-ku, 13113 = Shibuya-ku. Used only when no search URLs are given.",
                        "default": [
                            "13101"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minRentJpy": {
                        "title": "Minimum rent (JPY/month)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Optional lower rent bound, e.g. 80000. Used only when no search URLs are given."
                    },
                    "maxRentJpy": {
                        "title": "Maximum rent (JPY/month)",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Optional upper rent bound, e.g. 200000. Used only when no search URLs are given."
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Hard cap on listings pushed to the dataset (max 10,000). Free-plan users are capped at 50 results per run.",
                        "default": 100
                    },
                    "language": {
                        "title": "Output language",
                        "enum": [
                            "en"
                        ],
                        "type": "string",
                        "description": "Output normalization language. v1 is English only.",
                        "default": "en"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
