Autoplius.lt Data Parser & API
Autoplius.lt is Lithuania’s leading car portal, part of the Baltic Classifieds Group that also runs Auto24 in Estonia and Latvia, and Carapis extracts its full listing data, including spec, mileage, photos and dealer details, through one REST API. One parent, three Baltic markets — so a single parser pattern covers Lithuania, Estonia and Latvia.
| Country | Lithuania |
|---|---|
| Type | Portal |
| Owner | Baltic Classifieds Group |
| Vehicle types | used, new, dealer, private |
| Monthly visits | BCG ~57M/mo all-verticals (FY25) |
| Active listings | — (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | autoplius.lt |
What is Autoplius.lt?
Autoplius.lt is the leading car portal in Lithuania, operated by the LSE-listed Baltic Classifieds Group (BCG). Its sister brands Auto24.ee (Estonia) and Auto24.lv (Latvia) lead their respective markets. Autoplius carries dealer and private listings of used and new cars. BCG draws ~57M visits per month across all its verticals (FY25).
Market Position
Autoplius.lt leads the Lithuanian auto market and, together with Auto24 in Estonia and Latvia, gives BCG dominance across the Baltics. With one parent and three markets on a shared platform, a single parser pattern covers all three countries — one integration, Baltic-wide coverage. BCG’s verticals together draw ~57M monthly visits (FY25). Anti-bot is low, so Carapis serves the data through the same unified endpoint as every other platform.
Data Fields Available
Carapis extracts a structured record from each Autoplius.lt 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
The shared BCG platform means Auto24 (EE/LV) data normalizes alongside Autoplius for a single Baltic view.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "autoplius-lt", "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 — Baltic-wide dealer and private listings power residual-value and market-pricing models for dealers.
- Market research — track inventory mix, mileage and price trends across Lithuania, Estonia and Latvia. See market research.
- Import / export — the Baltics are an EU used-car corridor; spec and dealer data support cross-border sourcing. See import & export.