# Seoul Jeonse Apartments on Naver Real Estate

**Use case:** 

Export Seoul jeonse listings from Naver Real Estate: deposit amount, exclusive area, floor, build year and complex. The Korean lump-sum lease as a dataset.

## Input

```json
{
  "operation": "search",
  "locations": [
    "서울시"
  ],
  "dealType": "jeonse",
  "propertyTypes": [
    "A01"
  ],
  "maxResults": 30,
  "includeDetails": false,
  "minPrice": 0,
  "maxPrice": 0,
  "minArea": 0,
  "maxArea": 0,
  "onlyOwners": false,
  "listingUrls": []
}
```

## Output

```json
{
  "listingId": {
    "label": "🆔 Listing number",
    "format": "string"
  },
  "url": {
    "label": "🔗 Listing URL",
    "format": "string"
  },
  "buildingName": {
    "label": "🏷️ Complex / building",
    "format": "string"
  },
  "complexNumber": {
    "label": "🏢 Complex number",
    "format": "number"
  },
  "unit": {
    "label": "🚪 Dong / unit",
    "format": "string"
  },
  "dealType": {
    "label": "🤝 Deal type",
    "format": "string"
  },
  "dealTypeKo": {
    "label": "🤝 Deal type (Korean)",
    "format": "string"
  },
  "propertyType": {
    "label": "🏠 Property type",
    "format": "string"
  },
  "propertyTypeKo": {
    "label": "🏠 Property type (Korean)",
    "format": "string"
  },
  "price": {
    "label": "💰 Price (₩)",
    "format": "number"
  },
  "rentPrice": {
    "label": "📆 Monthly rent (₩)",
    "format": "number"
  },
  "managementFee": {
    "label": "🧾 Management fee (₩)",
    "format": "number"
  },
  "priceChangeStatus": {
    "label": "📉 Price-change flag",
    "format": "number"
  },
  "areaExclusive": {
    "label": "📐 Exclusive area (m²)",
    "format": "number"
  },
  "areaSupply": {
    "label": "📏 Supply area (m²)",
    "format": "number"
  },
  "areaSupplyLabel": {
    "label": "📐 Supply area (as shown)",
    "format": "string"
  },
  "floor": {
    "label": "🪜 Floor",
    "format": "number"
  },
  "totalFloors": {
    "label": "🏢 Floors in building",
    "format": "number"
  },
  "direction": {
    "label": "🧭 Facing",
    "format": "string"
  },
  "buildYear": {
    "label": "📅 Built",
    "format": "number"
  },
  "city": {
    "label": "🏙️ City / province",
    "format": "string"
  },
  "district": {
    "label": "🗺️ District (구)",
    "format": "string"
  },
  "neighbourhood": {
    "label": "📍 Neighbourhood (동)",
    "format": "string"
  },
  "latitude": {
    "label": "🧭 Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "🧭 Longitude",
    "format": "number"
  },
  "isOwnerVerified": {
    "label": "👤 Owner-verified",
    "format": "boolean"
  },
  "confirmedDate": {
    "label": "📅 Confirmed",
    "format": "string"
  },
  "brokerageName": {
    "label": "🏪 Brokerage",
    "format": "string"
  },
  "brokerName": {
    "label": "👤 Broker (agency brand)",
    "format": "string"
  },
  "sameAddressCount": {
    "label": "🔁 Brokerages on this unit",
    "format": "number"
  },
  "photoCount": {
    "label": "🖼️ Photos",
    "format": "number"
  },
  "thumbnailUrl": {
    "label": "🖼️ Photo",
    "format": "string"
  },
  "featureText": {
    "label": "📝 Feature text",
    "format": "string"
  },
  "isDirectTrade": {
    "label": "🤲 Direct trade",
    "format": "boolean"
  },
  "roomCount": {
    "label": "🛏️ Rooms",
    "format": "number"
  },
  "bathRoomCount": {
    "label": "🛁 Bathrooms",
    "format": "number"
  },
  "parkingCount": {
    "label": "🚗 Parking spaces (complex)",
    "format": "number"
  },
  "parkingPerHousehold": {
    "label": "🚗 Parking per household",
    "format": "number"
  },
  "movingInType": {
    "label": "📦 Moving in",
    "format": "string"
  },
  "movingInNegotiable": {
    "label": "📦 Moving-in date negotiable",
    "format": "boolean"
  },
  "priceLabel": {
    "label": "💵 Price (억/만원)",
    "format": "string"
  },
  "regionCode": {
    "label": "🗺️ Naver region code",
    "format": "string"
  },
  "detailUrl": {
    "label": "📄 Detail record URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Naver Real Estate Scraper - Korea Property Listings](https://apify.com/sian.agency/naver-property-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/naver-property-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sian.agency/naver-property-scraper.md

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