# SUUMO 일본 부동산 스크래퍼 — 중고 아파트·임대 매물 (`fruitful_quintessence/suumo-japan-real-estate-scraper-kr`) Actor

일본 최대 부동산 포털 SUUMO에서 중고 아파트와 임대 매물을 수집합니다.

- **URL**: https://apify.com/fruitful\_quintessence/suumo-japan-real-estate-scraper-kr.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 일본 부동산 스크래퍼

일본 최대 부동산 포털 [SUUMO](https://suumo.jp)（Recruit 운영）에서 중고 아파트（中古マンション）와 임대（賃貸） 매물 정보를 수집합니다. 가격, 주소, 면적, 평면, 건축연도, 가장 가까운 역 및 상세 페이지 링크를 포함합니다.

> 본 도구는 한국어판이며, 출력 데이터는 일본어 원문입니다. 영문판은 [suumo-japan-real-estate-scraper](https://apify.com/fruitful_quintessence/suumo-japan-real-estate-scraper) 참조.

### 출력 예시

```json
{
  "title": "ハイツ烏山",
  "price": "3880万円",
  "price_man": "3880",
  "address": "東京都世田谷区...",
  "area": "54.13m 2",
  "layout": "3LDK",
  "built": "1998年3月",
  "station": "京王線「千歳烏山」徒歩5分",
  "detail_url": "https://suumo.jp/ms/chuko/tokyo/sc_setagaya/nc_20430875/",
  "mode": "ms_chuko"
}
```

### 입력 파라미터

| 필드 | 유형 | 설명 | 기본값 |
|------|------|------|--------|
| `mode` | select | `ms_chuko`（중고 아파트）또는 `chintai`（임대） | `ms_chuko` |
| `pref` | string | 도도부현 slug（tokyo, kanagawa, osaka...） | `tokyo` |
| `city` | string | 시/구 slug（setagaya, shibuya, minato...） | `setagaya` |
| `maxItems` | integer | 최대 반환 매물 수 | 20 |

### 활용 사례

- **부동산 시장 조사** — 구별 매물 가격 추적, 투자 분석
- **가격 모니터링** — 특정 매물의 가격 변동 감지
- **해외 구매 정보** — 일본 부동산 데이터 집계, 해외 구매자 지원
- **데이터 연계** — CRM 또는 마켓 대시보드에 부동산 데이터 공급

### 가격

결과당 과금. Actor 시작 $0.00005 + 매물 결과당 $0.001.

### 제한 사항

- 각 시/구 목록의 첫 페이지（약 20개 결과）를 수집합니다.
- 목록 페이지 요약 필드（제목, 주소, 가격）를 반환합니다. 상세 필드（평면도, 토지 권리, 구조）는 상세 페이지를 별도로 수집해야 합니다.
- 일부 도도부현/시/구 slug는 SUUMO URL 규칙에 맞는지 확인이 필요할 수 있습니다.

### 변경 이력

- 0.1 — 최초 릴리스（중고 아파트 + 임대 매물 수집）.

# 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

## `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,
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

매물 제목

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

가격(만엔) 또는 임대료

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

만엔 단위 숫자 가격

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

매물 주소

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

전용 면적

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

방 구조

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

건축 연월

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

가장 가까운 역 및 도보 시간

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

상세 페이지 URL

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

매물 유형

# 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,
    "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-kr").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,
    "includeDetails": False,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("fruitful_quintessence/suumo-japan-real-estate-scraper-kr").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,
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call fruitful_quintessence/suumo-japan-real-estate-scraper-kr --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-kr"
        }
    }
}

```

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/GfdpyUl6gSpCQlGK8/builds/lJC5runZqSHj3TV6a/openapi.json
