LUN.ua Scraper — Sale, Rent & Newbuilds | $1.5/1k avatar

LUN.ua Scraper — Sale, Rent & Newbuilds | $1.5/1k

Pricing

from $1.05 / 1,000 results

Go to Apify Store
LUN.ua Scraper — Sale, Rent & Newbuilds | $1.5/1k

LUN.ua Scraper — Sale, Rent & Newbuilds | $1.5/1k

Scrape LUN.ua: secondary sale & rent plus new buildings. Prices, rooms, area, geo, photos, partner source. HTTP + JSON-LD. Only dedicated LUN.ua scraper on Apify.

Pricing

from $1.05 / 1,000 results

Rating

0.0

(0)

Developer

Maksym Horbachov

Maksym Horbachov

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

LUN.ua Scraper — Ukraine Real Estate | Sale, Rent, Newbuilds | $1.5/1k

Scrape LUN.ua — Ukraine's leading real-estate platform. One actor covers:

  • Secondary sale — flats, houses, commercial, land
  • Long-term rent — apartments and houses
  • New buildings — новобудови catalogs + project details (developers, price ranges)

$1.50 per 1,000 results — the only dedicated LUN.ua scraper on Apify. See pricing.

Why This Actor?

  • Full LUN coverage — sale + rent + primary market in one tool
  • Zero setup — no API key, no login
  • Structured data — JSON-LD + card enrichment (rooms, area, geo, photos)
  • Partner links — when LUN aggregates from rieltor.ua etc., you get sourceUrl
  • Incremental monitoring — track new listings and price changes on a schedule
  • HTTP-first — no browser for market search pages

Coverage

ModeWhat
marketSecondary: /sale|rent/{city}/{flats|houses|commercial|land}
newbuildingsPrimary catalog + optional project detail pages
urlPaste any LUN search / новобудови / project URL
listingsSpecific project URLs

What Data You Get

Secondary market (sale / rent)

FieldExample
titleЛомаківська вулиця, 56/2
price / currency385000 / USD
rooms1
areaSqm72
pricePerSqm5347
street / city / districtaddress fields
latitude / longitudegeo
photosCDN URLs
descriptionFull listing text
sourceSite / sourceUrlPartner site when aggregated
transactionTypesale or rent
propertyTypeflats, houses, commercial, land
marketsecondary

Sample — sale flat

{
"id": "1862987549483739",
"title": "Ломаківська вулиця, 56/2",
"price": 385000,
"currency": "USD",
"rooms": 1,
"areaSqm": 72,
"pricePerSqm": 5347,
"city": "Київ",
"district": "Печерський",
"transactionType": "sale",
"propertyType": "flats",
"market": "secondary",
"sourceSite": "rieltor.ua",
"sourceUrl": "https://rieltor.ua/4520529395",
"photos": ["https://market-images.lunstatic.net/lun-ua/.../1862987549483739.jpg"]
}

New buildings (primary)

FieldExample
titleАпарт-готель Circle
developers["Saga Development", "BGV-Development"]
priceFromUAH2271941
offersPrice tiers from JSON-LD
citykyiv
marketprimary
propertyTypenewbuilding

Use Cases

WhoWhat
Proptech / aggregatorsFeed UA listings into apps and dashboards
InvestorsCompare secondary asking prices vs newbuild price-from
AgenciesMonitor competitor inventory and rent levels by district
AnalystsCity-level supply datasets (Kyiv, Lviv, Odesa, …)
Alert botsIncremental mode → notify on new flats or price drops

Examples

Sale — Kyiv flats under $150k

{
"mode": "market",
"transactionType": "sale",
"propertyType": "flats",
"city": "kyiv",
"priceTo": 150000,
"rooms": [1, 2],
"maxResults": 50
}

Rent — Lviv apartments

{
"mode": "market",
"transactionType": "rent",
"propertyType": "flats",
"city": "lviv",
"maxResults": 40
}

New buildings — Kyiv projects

{
"mode": "newbuildings",
"city": "kyiv",
"fetchDetails": true,
"maxResults": 30
}

Paste URL

{
"mode": "url",
"searchUrl": "https://lun.ua/rent/kyiv/houses",
"maxResults": 60
}

Incremental monitoring

{
"mode": "market",
"transactionType": "sale",
"propertyType": "flats",
"city": "kyiv",
"maxResults": 200,
"incremental": true,
"stateKey": "kyiv-sale-flats",
"onlyChanges": true
}

changeType: new | price_dropped | price_raised | unchanged | delisted.

Pricing

$1.50 per 1,000 results (PPE).

VolumeCost
50 results$0.075
1,000 results$1.50
10,000 results$15.00

Quick Start

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("skipper_lume/lun-ua-scraper").call(run_input={
"mode": "market",
"transactionType": "sale",
"propertyType": "flats",
"city": "kyiv",
"maxResults": 25,
})
for row in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{row['title']}{row.get('price')} {row.get('currency')}{row.get('district')}")

Cities

Market mode uses English slugs: kyiv, lviv, odesa, kharkiv, dnipro, …

Newbuildings mode maps to LUN Ukrainian catalog URLs (Київ, Львів, Одеса, …).

Notes

  • LUN aggregates many secondary listings from partner sites — we return LUN fields plus sourceUrl when available
  • Market search uses HTTP + JSON-LD (no browser)
  • For large multi-page runs, enable Apify Proxy

About LUN.ua

LUN.ua is Ukraine's top real-estate discovery platform for secondary sales, long-term rentals, and new developments from major developers.

Changelog

v1.0 (July 2026)

  • Initial release: market sale/rent, newbuildings, URL modes, incremental monitoring