av.by Data Parser & API
av.by is Belarus’s dominant car portal — with a self-reported ~55K+ active listings and an estimated few million visits per month — and Carapis extracts its full listing data, including spec, mileage, photos and dealer details, through one REST API. The leading Belarusian auto site, av.by carries both dealer and private inventory at low anti-bot friction.
| Country | Belarus |
|---|---|
| Type | Portal |
| Vehicle types | used, new, dealer, private |
| Monthly visits | ~few M/mo (est.) |
| Active listings | ~55K+ (self-reported) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | cars.av.by |
What is av.by?
av.by is the leading car portal in Belarus, carrying dealer and private listings of used and new cars (with abw.by as a secondary auto-media/classifieds brand). It is the country’s primary online car marketplace. av.by self-reports ~55K+ active listings and draws an estimated few million visits per month.
Market Position
av.by is the dominant auto portal in Belarus, with a self-reported ~55K+ active listings and an estimated few-million monthly visits (traffic is inferred, not measured). It is the national leader ahead of secondary brands like abw.by. Anti-bot is low, so it is a low-friction target; Carapis serves its data through the same unified endpoint as every other platform.
Data Fields Available
Carapis extracts a structured record from each av.by 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, seller type, location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "av-by", "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 — Belarus’s leading auto dataset powers residual-value and market-pricing models for dealers.
- Market research — track inventory mix, mileage and price trends across the Belarusian used-car market. See market research.
- Import / export — vet and price Belarusian vehicles remotely. See import & export.