Drom.ru Data Parser & API
Drom.ru is a major independent Russian car classifieds — around 22M visits per month and an estimated 1M+ listings — and Carapis extracts its full listing data, including spec, mileage, photos and dealer details, through one REST API. Especially strong in the Russian Far East and Siberia, Drom.ru is one of the four leading Russian auto verticals and a key source for right-hand-drive and import-heavy inventory.
| Country | Russia |
|---|---|
| Type | Classifieds |
| Vehicle types | used, new, dealer, private, moto, commercial |
| Monthly visits | ~22M/mo (Semrush Jan 2026) |
| Active listings | ~1M+ (est.) |
| API access | Unofficial API only |
| Parse priority | ★★★★☆ |
| Official site | www.drom.ru |
What is Drom.ru?
Drom.ru is an independent used- and new-car classifieds site in Russia, historically strongest in the Far East and Siberia where Japanese imports dominate. It carries private and dealer listings plus motorcycles and commercial vehicles. Drom.ru draws an estimated ~22M visits per month (Semrush, Jan 2026) with roughly 1M+ active listings.
Market Position
Drom.ru is one of the four major Russian auto verticals alongside Avito Auto, Auto.ru and AM.ru, with ~22M monthly visits (Semrush, Jan 2026, est.) and an estimated 1M+ listings. Its regional strength in the Far East/Siberia and import-heavy inventory make it complementary to the Moscow-centric portals. There is no clean public API and the site is JS-rendered with medium-to-high anti-bot — work Carapis absorbs so you receive clean structured data through one endpoint.
Data Fields Available
Carapis extracts a structured record from each Drom.ru listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — factory options and trim
- Listing context — dealer / seller info, location, photo gallery
Drom’s import-heavy inventory makes its spec and mileage data valuable for tracking the right-hand-drive and Japanese-import segments.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "drom-ru", "limit": 20},
headers={"Authorization": f"Bearer {API_KEY}"},
)
for car in resp.json()["results"]:
print(car["make"], car["model"], car["year"], car["price"])Get an API key at my.carapis.com and see the full API reference. Pricing is on the pricing page.
Use Cases
- Import / export — Drom’s Far East focus makes it a prime source for Japanese-import and right-hand-drive pricing. See import & export.
- Pricing intelligence — listing and spec data power residual-value and market-pricing models for dealers.
- Market research — track inventory mix and regional price trends across Russia. See market research.