Lamborghini APIlamborghini.com ↗
Search Lamborghini's official worldwide inventory of Certified, Used, and Demo vehicles in real-time, filtering by country, model, body style, and fuel type to find your ideal Lamborghini. Access up-to-date dealer stock information directly from Lamborghini's Selezione locator to compare available vehicles across locations.
curl -X GET 'https://api.parse.bot/scraper/6e228ac3-a2e6-46f8-be55-be85ec4544ea/search_stock?countries=IT%2CCZ%2CDE%2CSK%2CES%2CRO%2CPL&fuel_type=petrol&body_styles=suv%2Ccoupe' \ -H 'X-API-Key: $PARSE_API_KEY'
Searches the live stock published on Lamborghini's official stock locator and returns one record per vehicle listing with model, model year, body style, engine/fuel specs, colours, odometer, price (dealer currency plus a EUR-normalised value), WLTP figures, the full factory option list, image URLs and the holding dealer's name, address and country. The locator only lists dealer-held Certified pre-owned, Used and Demo (demonstrator) vehicles; the site publishes no 'brand new / unregistered' category, so 'demo' is the closest listing type to new stock. Results are paged: page (default 1) and limit (default 20, capped at 100) select the slice, total is the upstream match count and has_more tells whether a further page exists; a page past the end returns an empty vehicles array with the same total. Filters are combined with AND; each filter omitted means no restriction. One upstream request per call.
| Param | Type | Description |
|---|---|---|
| page | integer | 1-based page number. |
| limit | integer | Vehicles per page, capped at 100. |
| sort_by | string | Sort key applied upstream. |
| countries | string | Comma-separated 2-letter ISO country codes of the dealer holding the car, e.g. IT,CZ,DE,SK,ES,RO,PL. Omitted = all countries. |
| fuel_type | string | Fuel type filter. Omitted = all fuel types. |
| body_styles | string | Comma-separated subset of suv, coupe, convertible (the only body styles the locator publishes). Omitted = all body styles. |
| model_group | string | Model family name exactly as shown in results' model_group (e.g. Urus). Omitted = all models; an unknown name yields an empty result. |
| listing_types | string | Comma-separated subset of certified, used, demo selecting which stock categories to include. |
| sort_direction | string | Sort direction. |
{
"type": "object",
"fields": {
"page": "integer page returned",
"limit": "integer page size applied after capping",
"total": "integer count of listings matching the filters across all pages",
"has_more": "boolean, true when a further page exists",
"vehicles": "array of listing objects: listing_id, vin, listing_type (Certified/Used/Demo), listing_status, model_group, model, model_year, registration_year/month, body_style, fuel_type, engine {description, cylinders, capacity_cc}, transmission, hand_drive, colours, odometer {value, units}, previous_owners, price {retail, currency, price_on_application, excludes_vat, vat_qualifying}, price_eur, wltp figures, environmental_label, features [{category, name, code}], description, images (URLs), dealer {id, name, address, town, post_code, country_code, country_name, sales_region, phone, latitude, longitude}"
},
"sample": {
"data": {
"page": 1,
"limit": 3,
"total": 130,
"has_more": true,
"vehicles": [
{
"vin": "ZPBEA1ZL4LLA06921",
"wltp": {
"co2Emissions": 325,
"consumptionCombined": 12.7
},
"model": "Urus",
"price": {
"retail": 169000,
"currency": "EUR",
"excludes_vat": true,
"vat_qualifying": false,
"price_on_application": false
},
"dealer": {
"id": 127846,
"name": "Lamborghini Praha",
"town": "Praha",
"phone": "+ 420 602 731 822",
"address": "U Kamene 371, Orech Prague West, Praha, 252 25, CZ",
"latitude": 50.02347,
"longitude": 14.29941,
"post_code": "252 25",
"country_code": "CZ",
"country_name": "Czech Republic",
"sales_region": "Czech Republic"
},
"engine": {
"cylinders": "V8",
"capacity_cc": 3996,
"description": "4.0 litre - V8"
},
"images": [
"https://res.cloudinary.com/motortrak/image/upload/t_base_vehicle_transformation/v1727860702/ims2/vehicle-media/lamborghini/Urus/2020/06cc6ed95b1ca0545e71733657120703/no83kkxx6zxy7ty9iy0w.webp"
],
"features": [
{
"code": "ZLRAD-47W",
"name": "22\" Nath Diamond-finished Alloy Wheels",
"category": "Exterior"
}
],
"odometer": {
"units": "km",
"value": 79000
},
"fuel_type": "PETROL",
"price_eur": 169000,
"body_style": "Off Road Vehicle / SUV",
"hand_drive": "Left",
"listing_id": "25258707",
"model_year": 2020,
"description": "Full Warranty / Auxiliary heating / 4-seat",
"model_group": "Urus",
"listing_type": "Certified",
"transmission": "Automatic",
"listing_status": "For Sale",
"exterior_colour": "Nero Helene",
"interior_colour": "Nero Ade",
"previous_owners": null,
"registration_year": 2020,
"registration_month": "Jan",
"environmental_label": "G",
"exterior_meta_colour": "Black"
}
]
},
"status": "success"
}
}About the Lamborghini API
The Lamborghini API on Parse exposes 1 endpoint for the publicly available data on lamborghini.com. 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.