Auto24 APIeng.auto24.lv ↗
Search and browse thousands of vehicles from Latvia's largest auto marketplace, filtering by make, type, year, price, fuel type, and transmission to find exactly what you're looking for. Access comprehensive vehicle details including specifications, equipment lists, images, and pricing information for any listing.
curl -X GET 'https://api.parse.bot/scraper/dbe7f8c9-b1f4-4974-87e0-c2a94834d40e/search_vehicles?sort=newest' \ -H 'X-API-Key: $PARSE_API_KEY'
Search and list vehicles for sale on auto24.lv with optional filters and pagination. Returns 50 vehicles per page sorted by the chosen order. Promoted ads may appear at the top regardless of sort order. The total count and page count reflect the filtered result set.
| Param | Type | Description |
|---|---|---|
| fuel | string | Fuel type code. Values observed: 1=petrol, 2=diesel, 3=LPG, 5=electric, 6=hybrid. Passed to the upstream filter. |
| make | string | Numeric make ID to filter by brand. Examples: 4 (BMW), 2 (Audi), 7 (Ford), 14 (Fiat), 34 (Hyundai). Obtain IDs from the site's make dropdown or from returned vehicle data. |
| page | integer | Page number (1-indexed). Each page returns up to 50 vehicles. |
| sort | string | Sort order for results. Omitting defaults to newest first. |
| year_to | string | Maximum year filter (e.g. 2023). |
| price_to | string | Maximum price in EUR (e.g. 20000). |
| year_from | string | Minimum year filter (e.g. 2015). |
| price_from | string | Minimum price in EUR (e.g. 5000). |
| transmission | string | Transmission type code. Values observed: 1=manual, 2=automatic. Passed to the upstream filter. |
| vehicle_type | string | Vehicle type code. 100=all types, 101=passenger car, 102=SUV, 103=commercial vehicle, 104=bus, 107=truck, 108=trailer, 109=mototechnics, 110=water vehicle, 113=caravan and autocaravan, 120=racing vehicle, 111=special technics. Omitting defaults to all types (100). |
{
"type": "object",
"fields": {
"page": "current page number",
"total": "total number of matching vehicles",
"per_page": "vehicles per page (always 50)",
"vehicles": "array of vehicle summary objects",
"total_pages": "total number of pages"
},
"sample": {
"data": {
"page": 1,
"total": 21890,
"per_page": 50,
"vehicles": [
{
"id": "4342663",
"url": "https://eng.auto24.lv/vehicles/4342663",
"fuel": "Diesel",
"make": "Opel",
"year": "2005",
"drive": "Front-wheel drive",
"model": "Corsa",
"price": "€900",
"title": "Opel Corsa 1.3 51kW",
"engine": "1.3 51kW",
"mileage": "246 371 km",
"bodytype": "Hatchback",
"model_trim": "C",
"transmission": "Manual",
"thumbnail_url": "https://img13.img-bcg.eu/h32/6695ca/s7/v2/206512784.jpg"
}
],
"total_pages": 438
},
"status": "success"
}
}About the Auto24 API
The Auto24 API on Parse exposes 2 endpoints for the publicly available data on eng.auto24.lv. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.