get_apartment_rent
Retrieve apartment lease and monthly rent data for a Korean region and month. Combine with trade data to calculate the jeonse ratio and assess gap-investment risk.
Instructions
Return apartment lease and monthly-rent records for a region and month.
Korean keywords: 아파트
Use this alongside get_apartment_trades to compute the jeonse ratio:
jeonse_ratio = summary.median_deposit_10k / trade summary.median_price_10k
A ratio above 70% signals high gap-investment risk.
Args:
region_code: 5-digit legal district code (returned by get_region_code).
year_month: Target year-month in YYYYMM format (e.g. "202501").
Call get_current_year_month if not specified by the user.
num_of_rows: Maximum number of records to return. Default 100.
Returns:
total_count: Total record count from the API
items: Rent list (unit_name, dong, area_sqm, floor,
deposit_10k, monthly_rent_10k, contract_type,
trade_date, build_year)
summary: median/min/max deposit_10k, monthly_rent_avg_10k,
jeonse_ratio_pct (null — compute from trade data),
sample_count
error/message: Present on API error or network failure
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year_month | Yes | ||
| num_of_rows | No | ||
| region_code | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||