AM.ru Data Parser & API
AM.ru is a Russian used- and new-car portal — an estimated 3-5M visits per month and roughly 0.5M listings — and Carapis extracts its listing data, including spec, mileage, photos and dealer details, through one REST API. A smaller player than Avito Auto or Auto.ru, AM.ru still adds useful dealer-side coverage of the Russian market.
| Country | Russia |
|---|---|
| Type | Portal |
| Vehicle types | used, new, dealer |
| Monthly visits | ~3-5M/mo (est.) |
| Active listings | ~0.5M (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | am.ru |
What is AM.ru?
AM.ru is a used- and new-car portal in Russia focused on dealer inventory. It is a secondary player in the four-way Russian race led by Avito Auto, Drom.ru and Auto.ru. AM.ru draws an estimated ~3-5M visits per month with roughly 0.5M active listings (both estimates).
Market Position
AM.ru sits below the major Russian verticals in scale, with an estimated ~3-5M monthly visits and ~0.5M listings (figures are inferred, not self-reported). Its dealer focus makes it a useful complement for broadening coverage of Russian dealer inventory beyond the top portals. Anti-bot is moderate and there is no public API, so Carapis handles extraction and serves the data through one unified endpoint.
Data Fields Available
Carapis extracts a structured record from each AM.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
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "am-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
- Pricing intelligence — dealer listings broaden the sample for residual-value and market-pricing models for dealers.
- Market research — track dealer inventory mix and price trends across Russia. See market research.
- Import / export — vet and price vehicles sourced from Russia remotely. See import & export.