RST.ua Scraper — Ukraine Used Cars | Prices & Specs | $1/1k avatar

RST.ua Scraper — Ukraine Used Cars | Prices & Specs | $1/1k

Pricing

from $0.70 / 1,000 results

Go to Apify Store
RST.ua Scraper — Ukraine Used Cars | Prices & Specs | $1/1k

RST.ua Scraper — Ukraine Used Cars | Prices & Specs | $1/1k

Scrape used cars from RST.ua (Ukraine #2 auto marketplace). Prices USD/UAH, mileage, fuel, gearbox, photos, region. Search by brand/model or paste URL. HTTP-only + incremental monitoring. Only RST.ua scraper on Apify.

Pricing

from $0.70 / 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

2 days ago

Last modified

Share

Extract structured car listing data from RST.ua — Ukraine's #2 automotive marketplace. Prices in USD and UAH, mileage, fuel, gearbox, photos, region, and full detail enrichment.

$1.00 per 1,000 listings — the only dedicated RST.ua scraper on Apify. See pricing.

Why This Actor?

  • Only RST.ua scraper on Apify — no alternatives
  • Zero setup — no API key, no login, click Start
  • Fast & cheap — pure HTTP (CP1251 HTML), no browser
  • List or detail — cheap card scrape, optional full detail enrichment
  • Incremental monitoring — detect new listings, price drops, and delisted cars across scheduled runs
  • Brand by name — type Toyota or Mercedes, not obscure IDs
  • Pair with AUTO.RIA — cover both major Ukrainian auto marketplaces

What Data You Get

FieldExampleDescription
titleTOYOTA CamryListing title
brand / modelTOYOTA / CamryMake and model
year2013Year of manufacture
priceUSD / priceUAH13950 / 623600Prices in USD and UAH
mileageKm220000Mileage in km
fuelTypeГаз/БензинFuel type
engineVolume2.5Engine displacement
gearboxАвтоматTransmission
driveTypeПередній пр.Drive (detail mode)
bodyType / colorСедан / ЧорнийBody & color (detail)
regionКиївськаOblast / region
photosCDN URLsListing photos
descriptionSeller textFull text (detail mode)
changeTypeprice_droppedIncremental monitoring field

Sample Output

{
"id": 15416177,
"url": "https://rst.ua/ukr/oldcars/toyota/camry/toyota_camry_15416177.html",
"title": "TOYOTA Camry",
"brand": "TOYOTA",
"model": "Camry",
"year": 2013,
"priceUSD": 13950,
"priceUAH": 623600,
"mileageKm": 220000,
"fuelType": "Газ/Бензин",
"engineVolume": "2.5",
"gearbox": "Автомат",
"driveType": "Передній пр.",
"bodyType": "Седан",
"color": "Чорний",
"region": "Київська",
"photos": ["https://i0.rst.ua/oldcars/toyota/camry/15416177-1.jpg"],
"photoCount": 8,
"source": "detail"
}

Use Cases

WhoWhat
DealersMonitor RST inventory vs AUTO.RIA prices
ImportersTrack model availability and asking prices by region
AnalystsBuild dual-marketplace UA used-car datasets
Buyers / botsAlert on price drops with incremental mode

3 Modes

search — Brand / model / year / price

{
"mode": "search",
"brandName": "Toyota",
"modelName": "Camry",
"yearFrom": 2015,
"yearTo": 2022,
"priceTo": 20000,
"maxResults": 50,
"fetchDetails": true
}

url — Paste any RST search URL

Configure filters on rst.ua, copy the URL, paste here.

{
"mode": "url",
"searchUrl": "https://rst.ua/ukr/oldcars/bmw/x5/",
"maxResults": 100
}

listings — Specific ads

{
"mode": "listings",
"listingIds": [
"https://rst.ua/ukr/oldcars/toyota/camry/toyota_camry_15416177.html"
]
}

Incremental monitoring

Schedule the same search daily:

{
"mode": "search",
"brandName": "BMW",
"maxResults": 200,
"incremental": true,
"stateKey": "bmw-ua",
"onlyChanges": true
}

Each row gets changeType: new | price_dropped | price_raised | unchanged | delisted.

Pricing

$1.00 per 1,000 listings (PPE). Platform usage is free for the consumer.

VolumeCost
50 listings$0.05
1,000 listings$1.00
10,000 listings$10.00

Tip: set fetchDetails: false for faster list-only runs.

Quick Start

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("skipper_lume/rst-ua-scraper").call(run_input={
"mode": "search",
"brandName": "Toyota",
"yearFrom": 2018,
"maxResults": 30,
})
for car in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{car['title']} — ${car['priceUSD']}{car.get('region')}")

Tips

  • Use Apify Proxy for runs over ~100 listings (Cloudflare)
  • Keep maxConcurrency at 3–5
  • Pair with AUTO.RIA Scraper for full Ukrainian auto coverage

FAQ

Q: Do I need an API key?
A: No.

Q: VIN / phone numbers?
A: Not reliably public on RST HTML — not extracted.

Q: Encoding?
A: RST serves CP1251; output is clean Unicode JSON.

About RST.ua

RST.ua is one of Ukraine's largest used-car classifieds sites, alongside AUTO.RIA. It is a key source for market pricing, regional supply, and dealer inventory outside the RIA ecosystem.

Changelog

v1.0 (July 2026)

  • Initial release: search / url / listings
  • List-card + detail enrichment
  • Incremental monitoring