autoplius.lt APIautoplius.lt ↗
Access car listings and detailed vehicle specs from autoplius.lt, Lithuania's main car classifieds. Search listings and fetch full details via 2 endpoints.
curl -X GET 'https://api.parse.bot/scraper/3bde9220-9fe5-42d4-b997-77829bc1dd7a/search_cars?page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
List car listings from the main passenger cars section of autoplius.lt with basic information and URLs. Returns paginated results with approximately 20 listings per page.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
{
"type": "object",
"fields": {
"page": "current page number as integer",
"listings": "array of listing objects with url, title, price, raw_parameters, and location",
"total_on_page": "number of listings returned on this page"
},
"sample": {
"data": {
"page": 1,
"listings": [
{
"url": "https://autoplius.lt/skelbimai/bmw-i5-84-kwh-sedanas-2024-elektra-30731278.html",
"price": "48 700 €",
"title": "BMW i5",
"location": "Sedanas",
"raw_parameters": [
"2024-08",
"Sedanas"
]
}
],
"total_on_page": 20
},
"status": "success"
}
}About the autoplius.lt API
The Autoplius.lt API provides access to Lithuania's largest vehicle classifieds marketplace through 2 endpoints. Use search_cars to retrieve paginated lists of passenger car ads — each with title, price, location, and listing URL — then pass any URL to get_car_details to pull full specifications, images, seller name, and description for that specific vehicle.
Searching Car Listings
The search_cars endpoint returns the main passenger cars section of autoplius.lt in paginated form, delivering approximately 20 listings per page. Each result includes a url, title, price, location, and a raw_parameters object with the abbreviated spec data shown in the search view. Use the page integer parameter to step through the full catalogue. The response also includes total_on_page so you can detect when a page is sparse or exhausted.
Fetching Listing Details
The get_car_details endpoint accepts the full autoplius.lt listing URL — for example, https://autoplius.lt/skelbimai/<listing-slug>.html — and returns a complete record for that ad. The parameters object contains car specification key-value pairs in Lithuanian (fields such as make, model, year, mileage, fuel type, gearbox, and body type as published by the seller). Additional fields include an images array of photo URLs, description free text, seller_name, location, and price.
Data Coverage and Language
All specification keys in the parameters object are returned in Lithuanian, matching the language of the source. The API covers the passenger cars category. Vehicle price is returned as a formatted string with the currency symbol or null if not listed. Seller contact details beyond seller_name and location are not included in the response.
- Aggregate Lithuanian used car listings into a price comparison tool using the
priceandparametersfields - Track mileage and year data from
parametersto build depreciation or valuation models for the Lithuanian market - Monitor new listings by paginating
search_carsregularly and detecting previously unseen URLs - Collect vehicle photo sets via the
imagesarray for training automotive image classifiers - Build a regional inventory tool that maps
locationfields from multiple listings - Enrich a dealership CRM by pulling full specs via
get_car_detailsfor vehicles sourced from autoplius.lt
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does autoplius.lt have an official developer API?+
What does `get_car_details` return beyond what `search_cars` provides?+
search_cars returns summary data: url, title, price, location, and raw_parameters. get_car_details adds the full parameters specification object (all spec key-value pairs in Lithuanian), the complete images array of photo URLs, the free-text description, and seller_name. Use the URL from a search result as the required input to get_car_details.Are commercial vehicle or motorcycle listings covered?+
Can I filter search results by make, model, price range, or year?+
search_cars endpoint accepts only a page parameter; server-side filtering by make, price, or year is not currently supported. You can fork this API on Parse and revise it to pass filter parameters and target filtered listing URLs.Are specification keys in `parameters` in Lithuanian, and how should I handle them?+
parameters object reflect the Lithuanian-language labels used on the source site (for example, 'Markė' for make, 'Kėbulo tipas' for body type). If your application requires English keys, you will need to maintain a translation mapping on your side, as the API returns the fields as published.