Skip to main content

JLR US Public API Source

Overview

Jaguar Land Rover (JLR) operates several brands in the US market: Land Rover (Range Rover, Defender, Discovery) and Jaguar. The public API surface is split across multiple domains. National US inventory is sourced from the NetDirector GraphQL API that backs inventory.landroverusa.com — a single endpoint covering all US dealer inventory with no per-dealer scraping required.

API Domains and Authentication

DomainPurposeAuthBot Protection
retailerlocator.jaguarlandrover.comDealer locator (both brands)Public (browser-like headers)None
rules.config.landrover.comJLR configurator (feature catalog)Public (JSONP)None
production-api-oregon.search-api.netdirector.autoNational inventory (NetDirector GraphQL)Static authorization headerNone
websites-search.api.carscommerce.incPer-dealer inventory — discovered, not ingestedx-api-key + Origin/RefererCloudflare
reserve.landrover.comReservation system, SFCC productsSFCC SLAS OAuth2N/A

The retailer locator requires Origin and Referer headers matching the Land Rover US website. The JLR configurator returns JSONP-wrapped JSON that must be stripped before parsing. The NetDirector API requires a static authorization header and Origin/Referer set to https://inventory.landroverusa.com; no session or OAuth is needed.

Endpoints — Ingested

1. Retailer Locator — Dealers

URL: GET https://retailerlocator.jaguarlandrover.com/dealers

Parameters: postCode, requestMarketLocale=en_us, brand=Land Rover, filter=dealer, radius=500, unitOfMeasure=Miles, country=us

Response: {"dealers": [...]} — array of dealer objects with:

  • ciCode — unique dealer identifier (e.g. R0627)
  • name — dealer display name
  • address — nested object with line1, town, county, postCode, countryCode
  • latitude, longitude — geocoordinates
  • services[] — array with type (sales/repair), phone, fax, email
  • homePage — dealer website URL
  • dealerExtendedContact.newVehicleInventoryLink — direct URL to the dealer's new vehicle inventory page (used as the entry point for per-dealer inventory scraping)
  • dealerExtendedContact.preownedVehicleInventoryLink — pre-owned inventory URL
  • Boolean flags: dealer, bodyshop, authorisedRepairer, phev, bev, etc.
Sample response
jlr_retailerlocator_sample.json
{
"dealers": [
{
"serviceToTextMap": {
"bodyshop": "dealerLocator.labelBodyshop",
"repair": "dealerLocator.labelRepairs",
"partsonly": "dealerLocator.labelPartsOnly",
"sales": "dealerLocator.labelSales",
"classic": "dealerLocator.labelClassic"
},
"dealerExtendedContact": {
"region": null,
"newVehicleInventoryLink": null,
"preownedVehicleInventoryLink": null,
"t1SalesPhoneNumberDesktop": null,
"t1SalesPhoneNumberMobile": null,
"t1ServicePhoneNumberDesktop": null,
"t1ServicePhoneNumberMobile": null,
"retailerImage": null,
"allDealerExtendedContactNumbers": [
{
"desktop": "(212) 549-2200",
"tablet": "(212) 549-2200",
"mobile": "(212) 549-2200",
"service": "sales",
"serviceLabel": "dealerLocator.labelSales",
"defaultDealerImage": null,
"dialableMobileNumber": "2125492200"
}
]
},
"filter": [
"dealer"
],
"onlineBookingAvailable": false,
"preferredDealer": false,
"openingTimes": null,
"name": "Land Rover Manhattan",
"key": null,
"address": {
"town": "New York",
"county": "NY",
"countryRegion": "USA",
"countryCode": "US",
"postCode": "10019-3538",
"line1": "787 11th Ave",
"line2": "",
"line3": ""
},
"services": [
{
"phone": "(212) 549-2200",
"fax": "(212) 459-1990",
"email": "",
"type": "sales"
},
{
"phone": "(212) 459-9400",
"fax": "(212) 459-1990",
"email": "louistenore@jlrmanhattan.com",
"type": "repair"
}
],
"countryCode": "US",
"longitude": -73.98796,
"latitude": 40.76806,
"ciCode": "R0627",
"distanceInMiles": 1.4,
"usedInventoryUrl": null,
"lang": "default",
"homePage": "http://www.landrovermanhattan.com",
"newInventoryUrl": null,
"phoneDesktopSales": null,
"phoneDesktopService": null,
"phoneMobileSales": null,
"phoneMobileService": null,
"jaguarCare": false,
"bodyshop": false,
"authorisedRepairer": true,
"partsOnly": false,
"dealer": true,
"approvedPreOwned": false,
"classic": false,
"svSpecialityCentre": false,
"phev": true,
"bev": false,
"electricVehicleService": true,
"toYouRetailer": false,
"landRoverPinnacle": false,
"prideOfJaguar": false,
"dx": false,
"special": true,
"onlineSales": false,
"newJaguarSales": false,
"newJaguarService": false,
"brandStore": false,
"distanceInKm": 2.257281131067421,
"displayOriginalWebsiteLink": true,
"filteredPhoneNumber": {
"contact": "(212) 549-2200",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(212) 549-2200",
"dialableContactNumber": "2125492200",
"contactNumber": "(212) 549-2200",
"emailLink": "http://(212) 549-2200"
},
"filteredEmail": null,
"phoneNumbers": [
{
"contact": "(212) 549-2200",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(212) 549-2200",
"dialableContactNumber": "2125492200",
"contactNumber": "(212) 549-2200",
"emailLink": "http://(212) 549-2200"
},
{
"contact": "(212) 459-9400",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(212) 459-9400",
"dialableContactNumber": "2124599400",
"contactNumber": "(212) 459-9400",
"emailLink": "http://(212) 459-9400"
}
],
"faxNumbers": [
{
"contact": "(212) 459-1990",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(212) 459-1990",
"dialableContactNumber": "2124591990",
"contactNumber": "(212) 459-1990",
"emailLink": "http://(212) 459-1990"
},
{
"contact": "(212) 459-1990",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(212) 459-1990",
"dialableContactNumber": "2124591990",
"contactNumber": "(212) 459-1990",
"emailLink": "http://(212) 459-1990"
}
],
"emails": [
{
"contact": "louistenore@jlrmanhattan.com",
"service": "dealerLocator.labelRepairs",
"target": "",
"email": "louistenore@jlrmanhattan.com",
"dialableContactNumber": "",
"contactNumber": "louistenore@jlrmanhattan.com",
"emailLink": "mailto:louistenore@jlrmanhattan.com"
}
],
"serviceInformationList": [
{
"serviceClass": "sales",
"serviceResourceBundleKey": "dealerLocator.labelSales"
},
{
"serviceClass": "repair",
"serviceResourceBundleKey": "dealerLocator.labelRepairs"
},
{
"serviceClass": "phev",
"serviceResourceBundleKey": "dealerLocator.labelPlugInHybridElectricVehicleDealer"
},
{
"serviceClass": "evService",
"serviceResourceBundleKey": "dealerLocator.labelElectricVehicleService"
}
]
},
{
"serviceToTextMap": {
"bodyshop": "dealerLocator.labelBodyshop",
"repair": "dealerLocator.labelRepairs",
"partsonly": "dealerLocator.labelPartsOnly",
"sales": "dealerLocator.labelSales",
"classic": "dealerLocator.labelClassic"
},
"dealerExtendedContact": {
"region": null,
"newVehicleInventoryLink": null,
"preownedVehicleInventoryLink": null,
"t1SalesPhoneNumberDesktop": null,
"t1SalesPhoneNumberMobile": null,
"t1ServicePhoneNumberDesktop": null,
"t1ServicePhoneNumberMobile": null,
"retailerImage": null,
"allDealerExtendedContactNumbers": [
{
"desktop": "(201) 408-6600",
"tablet": "(201) 408-6600",
"mobile": "(201) 408-6600",
"service": "sales",
"serviceLabel": "dealerLocator.labelSales",
"defaultDealerImage": null,
"dialableMobileNumber": "2014086600"
}
]
},
"filter": [
"dealer"
],
"onlineBookingAvailable": false,
"preferredDealer": false,
"openingTimes": null,
"name": "Land Rover Englewood",
"key": null,
"address": {
"town": "Englewood",
"county": "NJ",
"countryRegion": "USA",
"countryCode": "US",
"postCode": "07631-4310",
"line1": "30 Van Nostrand Ave",
"line2": "",
"line3": ""
},
"services": [
{
"phone": "(201) 408-6600",
"fax": "(201) 408-6605",
"email": "pvictorero@penskeautomotive.com",
"type": "sales"
},
{
"phone": "(201) 408-6600",
"fax": "(201) 408-6655",
"email": "",
"type": "repair"
}
],
"countryCode": "US",
"longitude": -73.98254,
"latitude": 40.88063,
"ciCode": "R0635",
"distanceInMiles": 9.17,
"usedInventoryUrl": null,
"lang": "default",
"homePage": "http://www.landroverenglewood.com",
"newInventoryUrl": null,
"phoneDesktopSales": null,
"phoneDesktopService": null,
"phoneMobileSales": null,
"phoneMobileService": null,
"jaguarCare": false,
"bodyshop": false,
"authorisedRepairer": true,
"partsOnly": false,
"dealer": true,
"approvedPreOwned": false,
"classic": false,
"svSpecialityCentre": false,
"phev": true,
"bev": false,
"electricVehicleService": true,
"toYouRetailer": false,
"landRoverPinnacle": false,
"prideOfJaguar": false,
"dx": false,
"special": true,
"onlineSales": false,
"newJaguarSales": false,
"newJaguarService": false,
"brandStore": false,
"distanceInKm": 14.761225996595059,
"displayOriginalWebsiteLink": true,
"filteredPhoneNumber": {
"contact": "(201) 408-6600",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(201) 408-6600",
"dialableContactNumber": "2014086600",
"contactNumber": "(201) 408-6600",
"emailLink": "http://(201) 408-6600"
},
"filteredEmail": {
"contact": "pvictorero@penskeautomotive.com",
"service": "dealerLocator.labelSales",
"target": "",
"email": "pvictorero@penskeautomotive.com",
"dialableContactNumber": "",
"contactNumber": "pvictorero@penskeautomotive.com",
"emailLink": "mailto:pvictorero@penskeautomotive.com"
},
"phoneNumbers": [
{
"contact": "(201) 408-6600",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(201) 408-6600",
"dialableContactNumber": "2014086600",
"contactNumber": "(201) 408-6600",
"emailLink": "http://(201) 408-6600"
},
{
"contact": "(201) 408-6600",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(201) 408-6600",
"dialableContactNumber": "2014086600",
"contactNumber": "(201) 408-6600",
"emailLink": "http://(201) 408-6600"
}
],
"faxNumbers": [
{
"contact": "(201) 408-6605",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(201) 408-6605",
"dialableContactNumber": "2014086605",
"contactNumber": "(201) 408-6605",
"emailLink": "http://(201) 408-6605"
},
{
"contact": "(201) 408-6655",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(201) 408-6655",
"dialableContactNumber": "2014086655",
"contactNumber": "(201) 408-6655",
"emailLink": "http://(201) 408-6655"
}
],
"emails": [
{
"contact": "pvictorero@penskeautomotive.com",
"service": "dealerLocator.labelSales",
"target": "",
"email": "pvictorero@penskeautomotive.com",
"dialableContactNumber": "",
"contactNumber": "pvictorero@penskeautomotive.com",
"emailLink": "mailto:pvictorero@penskeautomotive.com"
}
],
"serviceInformationList": [
{
"serviceClass": "sales",
"serviceResourceBundleKey": "dealerLocator.labelSales"
},
{
"serviceClass": "repair",
"serviceResourceBundleKey": "dealerLocator.labelRepairs"
},
{
"serviceClass": "phev",
"serviceResourceBundleKey": "dealerLocator.labelPlugInHybridElectricVehicleDealer"
},
{
"serviceClass": "evService",
"serviceResourceBundleKey": "dealerLocator.labelElectricVehicleService"
}
]
},
{
"serviceToTextMap": {
"bodyshop": "dealerLocator.labelBodyshop",
"repair": "dealerLocator.labelRepairs",
"partsonly": "dealerLocator.labelPartsOnly",
"sales": "dealerLocator.labelSales",
"classic": "dealerLocator.labelClassic"
},
"dealerExtendedContact": {
"region": null,
"newVehicleInventoryLink": null,
"preownedVehicleInventoryLink": null,
"t1SalesPhoneNumberDesktop": null,
"t1SalesPhoneNumberMobile": null,
"t1ServicePhoneNumberDesktop": null,
"t1ServicePhoneNumberMobile": null,
"retailerImage": null,
"allDealerExtendedContactNumbers": [
{
"desktop": "929-583-6400",
"tablet": "929-583-6400",
"mobile": "929-583-6400",
"service": "sales",
"serviceLabel": "dealerLocator.labelSales",
"defaultDealerImage": null,
"dialableMobileNumber": "9295836400"
}
]
},
"filter": [
"dealer"
],
"onlineBookingAvailable": false,
"preferredDealer": false,
"openingTimes": null,
"name": "Land Rover Brooklyn",
"key": null,
"address": {
"town": "Brooklyn",
"county": "NY",
"countryRegion": "USA",
"countryCode": "US",
"postCode": "11224",
"line1": "809 Neptune Avenue",
"line2": "",
"line3": ""
},
"services": [
{
"phone": "929-583-6400",
"fax": "",
"email": "",
"type": "sales"
},
{
"phone": "929-583-6400",
"fax": "",
"email": "",
"type": "repair"
}
],
"countryCode": "US",
"longitude": -73.97723,
"latitude": 40.57993,
"ciCode": "R0679",
"distanceInMiles": 11.68,
"usedInventoryUrl": null,
"lang": "default",
"homePage": "http://www.landroverbrooklyn.com",
"newInventoryUrl": null,
"phoneDesktopSales": null,
"phoneDesktopService": null,
"phoneMobileSales": null,
"phoneMobileService": null,
"jaguarCare": false,
"bodyshop": false,
"authorisedRepairer": true,
"partsOnly": false,
"dealer": true,
"approvedPreOwned": false,
"classic": false,
"svSpecialityCentre": false,
"phev": true,
"bev": false,
"electricVehicleService": true,
"toYouRetailer": false,
"landRoverPinnacle": false,
"prideOfJaguar": false,
"dx": false,
"special": true,
"onlineSales": false,
"newJaguarSales": false,
"newJaguarService": false,
"brandStore": false,
"distanceInKm": 18.798140395240118,
"displayOriginalWebsiteLink": true,
"filteredPhoneNumber": {
"contact": "929-583-6400",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "929-583-6400",
"dialableContactNumber": "9295836400",
"contactNumber": "929-583-6400",
"emailLink": "http://929-583-6400"
},
"filteredEmail": null,
"phoneNumbers": [
{
"contact": "929-583-6400",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "929-583-6400",
"dialableContactNumber": "9295836400",
"contactNumber": "929-583-6400",
"emailLink": "http://929-583-6400"
},
{
"contact": "929-583-6400",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "929-583-6400",
"dialableContactNumber": "9295836400",
"contactNumber": "929-583-6400",
"emailLink": "http://929-583-6400"
}
],
"faxNumbers": [],
"emails": [],
"serviceInformationList": [
{
"serviceClass": "sales",
"serviceResourceBundleKey": "dealerLocator.labelSales"
},
{
"serviceClass": "repair",
"serviceResourceBundleKey": "dealerLocator.labelRepairs"
},
{
"serviceClass": "phev",
"serviceResourceBundleKey": "dealerLocator.labelPlugInHybridElectricVehicleDealer"
},
{
"serviceClass": "evService",
"serviceResourceBundleKey": "dealerLocator.labelElectricVehicleService"
}
]
},
{
"serviceToTextMap": {
"bodyshop": "dealerLocator.labelBodyshop",
"repair": "dealerLocator.labelRepairs",
"partsonly": "dealerLocator.labelPartsOnly",
"sales": "dealerLocator.labelSales",
"classic": "dealerLocator.labelClassic"
},
"dealerExtendedContact": {
"region": null,
"newVehicleInventoryLink": null,
"preownedVehicleInventoryLink": null,
"t1SalesPhoneNumberDesktop": null,
"t1SalesPhoneNumberMobile": null,
"t1ServicePhoneNumberDesktop": null,
"t1ServicePhoneNumberMobile": null,
"retailerImage": null,
"allDealerExtendedContactNumbers": [
{
"desktop": "(201) 987-8900",
"tablet": "(201) 987-8900",
"mobile": "(201) 987-8900",
"service": "sales",
"serviceLabel": "dealerLocator.labelSales",
"defaultDealerImage": null,
"dialableMobileNumber": "2019878900"
}
]
},
"filter": [
"dealer"
],
"onlineBookingAvailable": false,
"preferredDealer": false,
"openingTimes": null,
"name": "Land Rover Paramus",
"key": null,
"address": {
"town": "Paramus",
"county": "NJ",
"countryRegion": "USA",
"countryCode": "US",
"postCode": "07652-2900",
"line1": "405 Route 17 S",
"line2": "",
"line3": ""
},
"services": [
{
"phone": "(201) 987-8900",
"fax": "(201) 265-9150",
"email": "",
"type": "sales"
},
{
"phone": "(201) 987-8900",
"fax": "(201) 265-9150",
"email": "nbarrise@penskeautomotive.com",
"type": "repair"
}
],
"countryCode": "US",
"longitude": -74.07466,
"latitude": 40.94847,
"ciCode": "R0621",
"distanceInMiles": 14.47,
"usedInventoryUrl": null,
"lang": "default",
"homePage": "http://www.landroverparamus.com",
"newInventoryUrl": null,
"phoneDesktopSales": null,
"phoneDesktopService": null,
"phoneMobileSales": null,
"phoneMobileService": null,
"jaguarCare": false,
"bodyshop": false,
"authorisedRepairer": true,
"partsOnly": false,
"dealer": true,
"approvedPreOwned": false,
"classic": false,
"svSpecialityCentre": false,
"phev": true,
"bev": false,
"electricVehicleService": true,
"toYouRetailer": false,
"landRoverPinnacle": false,
"prideOfJaguar": false,
"dx": false,
"special": true,
"onlineSales": false,
"newJaguarSales": false,
"newJaguarService": false,
"brandStore": false,
"distanceInKm": 23.292297873209915,
"displayOriginalWebsiteLink": true,
"filteredPhoneNumber": {
"contact": "(201) 987-8900",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(201) 987-8900",
"dialableContactNumber": "2019878900",
"contactNumber": "(201) 987-8900",
"emailLink": "http://(201) 987-8900"
},
"filteredEmail": null,
"phoneNumbers": [
{
"contact": "(201) 987-8900",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(201) 987-8900",
"dialableContactNumber": "2019878900",
"contactNumber": "(201) 987-8900",
"emailLink": "http://(201) 987-8900"
},
{
"contact": "(201) 987-8900",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(201) 987-8900",
"dialableContactNumber": "2019878900",
"contactNumber": "(201) 987-8900",
"emailLink": "http://(201) 987-8900"
}
],
"faxNumbers": [
{
"contact": "(201) 265-9150",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(201) 265-9150",
"dialableContactNumber": "2012659150",
"contactNumber": "(201) 265-9150",
"emailLink": "http://(201) 265-9150"
},
{
"contact": "(201) 265-9150",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(201) 265-9150",
"dialableContactNumber": "2012659150",
"contactNumber": "(201) 265-9150",
"emailLink": "http://(201) 265-9150"
}
],
"emails": [
{
"contact": "nbarrise@penskeautomotive.com",
"service": "dealerLocator.labelRepairs",
"target": "",
"email": "nbarrise@penskeautomotive.com",
"dialableContactNumber": "",
"contactNumber": "nbarrise@penskeautomotive.com",
"emailLink": "mailto:nbarrise@penskeautomotive.com"
}
],
"serviceInformationList": [
{
"serviceClass": "sales",
"serviceResourceBundleKey": "dealerLocator.labelSales"
},
{
"serviceClass": "repair",
"serviceResourceBundleKey": "dealerLocator.labelRepairs"
},
{
"serviceClass": "phev",
"serviceResourceBundleKey": "dealerLocator.labelPlugInHybridElectricVehicleDealer"
},
{
"serviceClass": "evService",
"serviceResourceBundleKey": "dealerLocator.labelElectricVehicleService"
}
]
},
{
"serviceToTextMap": {
"bodyshop": "dealerLocator.labelBodyshop",
"repair": "dealerLocator.labelRepairs",
"partsonly": "dealerLocator.labelPartsOnly",
"sales": "dealerLocator.labelSales",
"classic": "dealerLocator.labelClassic"
},
"dealerExtendedContact": {
"region": null,
"newVehicleInventoryLink": null,
"preownedVehicleInventoryLink": null,
"t1SalesPhoneNumberDesktop": null,
"t1SalesPhoneNumberMobile": null,
"t1ServicePhoneNumberDesktop": null,
"t1ServicePhoneNumberMobile": null,
"retailerImage": null,
"allDealerExtendedContactNumbers": [
{
"desktop": "(914) 517-0772",
"tablet": "(914) 517-0772",
"mobile": "(914) 517-0772",
"service": "sales",
"serviceLabel": "dealerLocator.labelSales",
"defaultDealerImage": null,
"dialableMobileNumber": "9145170772"
}
]
},
"filter": [
"dealer"
],
"onlineBookingAvailable": false,
"preferredDealer": false,
"openingTimes": null,
"name": "Land Rover New Rochelle",
"key": null,
"address": {
"town": "New Rochelle",
"county": "NY",
"countryRegion": "USA",
"countryCode": "US",
"postCode": "10805",
"line1": "64 Nardozzi Pl",
"line2": "",
"line3": ""
},
"services": [
{
"phone": "(914) 517-0772",
"fax": "(914) 633-6776",
"email": "",
"type": "sales"
},
{
"phone": "(914) 517-0772",
"fax": "(914) 633-6776",
"email": "rutiglianot@autonation.com",
"type": "repair"
}
],
"countryCode": "US",
"longitude": -73.7925,
"latitude": 40.8991,
"ciCode": "R0615",
"distanceInMiles": 14.84,
"usedInventoryUrl": null,
"lang": "default",
"homePage": "http://www.landrovernewrochelle.com",
"newInventoryUrl": null,
"phoneDesktopSales": null,
"phoneDesktopService": null,
"phoneMobileSales": null,
"phoneMobileService": null,
"jaguarCare": false,
"bodyshop": false,
"authorisedRepairer": true,
"partsOnly": false,
"dealer": true,
"approvedPreOwned": false,
"classic": false,
"svSpecialityCentre": false,
"phev": true,
"bev": false,
"electricVehicleService": true,
"toYouRetailer": false,
"landRoverPinnacle": false,
"prideOfJaguar": false,
"dx": false,
"special": true,
"onlineSales": false,
"newJaguarSales": false,
"newJaguarService": false,
"brandStore": false,
"distanceInKm": 23.874799589761444,
"displayOriginalWebsiteLink": true,
"filteredPhoneNumber": {
"contact": "(914) 517-0772",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(914) 517-0772",
"dialableContactNumber": "9145170772",
"contactNumber": "(914) 517-0772",
"emailLink": "http://(914) 517-0772"
},
"filteredEmail": null,
"phoneNumbers": [
{
"contact": "(914) 517-0772",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(914) 517-0772",
"dialableContactNumber": "9145170772",
"contactNumber": "(914) 517-0772",
"emailLink": "http://(914) 517-0772"
},
{
"contact": "(914) 517-0772",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(914) 517-0772",
"dialableContactNumber": "9145170772",
"contactNumber": "(914) 517-0772",
"emailLink": "http://(914) 517-0772"
}
],
"faxNumbers": [
{
"contact": "(914) 633-6776",
"service": "dealerLocator.labelSales",
"target": "_blank",
"email": "(914) 633-6776",
"dialableContactNumber": "9146336776",
"contactNumber": "(914) 633-6776",
"emailLink": "http://(914) 633-6776"
},
{
"contact": "(914) 633-6776",
"service": "dealerLocator.labelRepairs",
"target": "_blank",
"email": "(914) 633-6776",
"dialableContactNumber": "9146336776",
"contactNumber": "(914) 633-6776",
"emailLink": "http://(914) 633-6776"
}
],
"emails": [
{
"contact": "rutiglianot@autonation.com",
"service": "dealerLocator.labelRepairs",
"target": "",
"email": "rutiglianot@autonation.com",
"dialableContactNumber": "",
"contactNumber": "rutiglianot@autonation.com",
"emailLink": "mailto:rutiglianot@autonation.com"
}
],
"serviceInformationList": [
{
"serviceClass": "sales",
"serviceResourceBundleKey": "dealerLocator.labelSales"
},
{
"serviceClass": "repair",
"serviceResourceBundleKey": "dealerLocator.labelRepairs"
},
{
"serviceClass": "phev",
"serviceResourceBundleKey": "dealerLocator.labelPlugInHybridElectricVehicleDealer"
},
{
"serviceClass": "evService",
"serviceResourceBundleKey": "dealerLocator.labelElectricVehicleService"
}
]
}
],
"env": "live"
}

Entity: dealers (key: dealer_code from ciCode) — asset jlr/us/raw/retailerlocator_dealersjlr/us/transformed/retailerlocator_dealers

2. JLR Configurator — Models and Features

URL: GET https://rules.config.landrover.com/rc/lr/en_us/{nameplate}_{modelyear}/{version}/{bodystyle}/.jsonp?view=summary

URL segments:

  • nameplate: programme code lowercase (e.g. l663 for Defender)
  • modelyear: model year code (e.g. k26 for 2026MY)
  • version: config version (e.g. 4cvli, changes periodically)
  • bodystyle: body style code (e.g. a-110, a-90, a-130)

Response: JSONP-wrapped JSON containing:

  • feature-dictionary.vehicle — nameplate metadata (id, description, property.JLRProgrammeCode, property.BrandFamily)
  • feature-dictionary.feature-list[] — 12 categories organized as:
    • PRODUCT — model/engine/trim combos with MSRP → extracted as models. Each PRODUCT feature's property.definition encodes the body style + model + engine combination, property.DerivativePackCode is the JLR derivative code, and property.5000Code (Code5000) links to the SFCC product catalog.
    • BODYSTYLE, MODEL, ENGINE — structural categories that define the configuration dimensions. Not extracted as features.
    • EXTERIOR — nested sub-categories: PAINT_COLOUR, PAINT_OPTIONS, ROOF_COLOUR, GLASS, REFLECTORS. Each feature has color swatches and pricing.
    • INTERIOR — nested: SEAT_UPHOLSTERY, HEADLINER, FASCIA.
    • WHEEL_CONFIGURATION — wheel options with pricing.
    • EXTERIOR_FEATURES, INTERIOR_FEATURES — additional equipment.
    • OPTIONS — standalone options with pricing.
    • ACCESSORIES — dealer-installed accessories.
    • CHARGES — destination/delivery charges. Excluded from feature extraction.

Each feature has: id (feature code), description.en (display name), price.GROSS.value (USD), price.NET.value, property.ExtendedDescription.en (long description), and availability state (default, selected, available, excluded).

Sample response
jlr_configurator_sample.json
{
"metadata": {
"view": "summary",
"url": "/rc/lr/en_us/l663_k26/4cvlj/a-110/.jsonp?view=summary",
"status": "200",
"meta": {
"Environment": "LIVE",
"Generated": "2026-06-24 18:45:47",
"Application": "lr",
"Market": "us",
"MarketVersion": "600790",
"currency-format": "$###,##0",
"Views": "inspire personalise",
"SpecMarket": "USA",
"JLRMarketCode": "800UD",
"Hides.active": "true",
"AvailabilityEngine.active": "true",
"AvailabilityEngine.info": "No availability data"
}
},
"feature-dictionary": {
"vehicle": {
"id": "l663",
"modelyear": "k26",
"href": "/rc/lr/en_us/l663_k26/4cvlj.jsonp?view=summary",
"description": {
"en": "2026 DEFENDER"
},
"price": {},
"property": {
"version": "4cvlj",
"ipr.modelcardcaveat.position": "below",
"VAT_RATE": "0",
"ipr.additional.bodystyle.show": "FIRST",
"ExteriorImageFrames": "Front3/4_R,Side_R,Rear3/4_L,Top_L",
"SOURCES": "lr_us_l663_k26_partial-additional-pricing_20260518093848.xlsx, lr_us_l663_k26_partial-connect_20260520144600.xlsx, lr_us_l663_k26_partial-autopoxo_20260325104407.xlsx, lr_us_l663_k26_partial-s44_20260520144527.xlsx",
"ipr.unreal.auth": "disabled",
"ipr.warranty.asstandard": "Design and Reserve Your Ultimate Defender Online. Select \u201cView Inventory Matches\u201d above to see vehicles available near you.",
"InteriorImageFrames": "Passenger,Row1,Row2",
"BodystyleCategories": "Y",
"ipr.inspire.cro.version.enabled": "Y",
"enableBuildYourOwn": "FIRST",
"ipr.unreal.environments": "Env_Mojave_Desert",
"Enable360": "N",
"ipr.unreal.provider": "monkeyway",
"languages": "en",
"FinanceEnabled": "Y",
"DateGenerated": "2026-05-20T14:46:02",
"JLRProgrammeCode": "L663",
"ipr.models.dedupefeatures.enabled": "N",
"ipr.unreal.enabled": "N",
"BrandFamily": "defender",
"ipr.footer.disclaimer.body": "<p>*Starting at price shown is the current Manufacturer's Suggested Retail Price and subject to change. Excludes destination &amp; delivery charge ($1,375 for Range Rover Evoque, $1,275 for Discovery Sport, $1,475 for Range Rover Velar, $2,450 for Range Rover, $1,850 for Range Rover Sport and Discovery, $1,950 for Defender). Tax, title, license, and retailer fees, all due at signing, and optional equipment. Base Manufacturer's Suggested Retail Price excludes destination &amp; delivery charge and may include optional equipment but excludes tax, title, license, and retailer fees, all due at signing. Total Manufacturer's Suggested Retail Price includes destination &amp; delivery charge and may include optional equipment but excludes tax, title, license, and retailer fees, all due at signing. Retailer price, terms and vehicle availability may vary. See your local authorized Land Rover Retailer for details.</p>\n\n<p><sup>4</sup>Always follow local speed limits.</p>\n<p><sup>5</sup>All figures are EPA estimates. Actual mileage may vary.<p>\n<p>\u2021Max speed is 130mph when fitted with 22\" wheels.</p\n<p>**Market dependent availability.</p\n<p>\u25c7Defender, excluding Defender OCTA, dynamic roof load allows for up to 260 lbs on Defender 90 and 370 lbs on Defender 110 and Defender 130 when fitted with off-road tires and Expedition Roof Rack. Static roof load allows for up to 661 lbs.</p>\n<p>\u25bdWith towing eye cover removed.</p>\n</p>\u25bcDefender V8 models have no dynamic roof loading capacity. Static roof load allows for up to 661lbs.</p>\n<p>\u25bc\u25bc220.4lbs (22\" Wheels with All Season Tires) / 370.3lbs (20\" Wheels with All-Terrain or Advanced All-Terrain Tires). Roof load is 0lbs when OCTA mode is activated.<p>\n<p>Weights stated reflect vehicle standard specification. Accessories and other items fitted after the point of manufacture will affect payload. Ensure Gross Vehicle Weight and Maximum Axle Loads are not exceeded when loading the vehicle with accessories, occupants, fluids and fuels, and payload.</p>\n<p>\u2021\u2021The maximum coupling point (nose weight) only applies to trailers with overrun brakes, without overrun breaks the maximum coupling point (nose weight) = 330lbs. Furthermore, the coupling point (nose weight) must not exceed 10% of the gross caravan or trailer weight. For further information, please contact your preferred Defender Retailer.<p>\n\n<p><sup>27</sup>Never tow beyond a vehicle\u2019s permissible towing capacity. Before towing, please consult the owner's manual or your local authorized Defender Retailer for more details.</p>\n<p><sup>22</sup>Driving in floodwaters or moving water should be avoided. Driving through water can be extremely dangerous. The Wade Sensing feature only detects depth of water the vehicle is in at the present time and not of water ahead or around the vehicle. Therefore, Wade Sensing cannot predict whether it is safe to proceed and cannot detect steep drops in grade around the vehicle. The driver is responsible for determining the conditions of the route being driven.</p>\n\n<p>Optional features and their availability may differ by vehicle specification (model and powertrain), or require the installation of other features in order to be fitted. Please contact your local retailer for more details, or configure your vehicle online.</p>\n\n<p>For complete details regarding the Land Rover limited warranty, please visit <a href=\"https://www.landroverusa.com/ownership/warranty.html\" target=\"_blank\">LANDROVERUSA.COM/WARRANTY</a>, call 1-800-FIND-4WD or visit your local Defender Retailer.</p>",
"InteriorImageSpec": "GL",
"assetreport.exterior-accessory-packs": "N",
"assetreport.interior-accessory-packs": "Y",
"ipr.unreal.background.video.path": "https://jlr.scene7.com/is/content/jlr/Defender-Stage_loading_new",
"JLRModelYear": "001CR",
"ExteriorImageSpec": "GL",
"JLRCode": "Q1",
"DisableUhdAssets": "Y",
"HasFeaturedContent": "Y"
},
"media": [
{
"name": "SharedKeyframeData",
"url": "https://assets.config.landrover.com/lr/l663/k26/kfdata/l663_k26_gl_gl-keyframedata.json?v=4cvlj"
},
{
"name": "VehicleImage",
"purpose": "thumb vehicle",
"url": "https://assets.config.landrover.com/lr/l663/k26/l663_k26_gl_vehicle.jpg?v=4cvlj"
},
{
"name": "ExImageGradient",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/exgrad_l663_k26_static.jpg?v=4cvlj"
}
]
},
"feature-list": [
{
"name": "BODYSTYLE",
"type": "product",
"description": {
"en": "Bodystyle"
},
"feature": [
{
"id": "A-110",
"availability": "selected",
"description": {
"en": "Defender 110"
},
"price": {
"GROSS": {
"currency": "USD",
"value": "0.00"
},
"NET": {
"currency": "USD",
"value": "0.00"
}
},
"property": {
"ExtendedDescription": {
"en": "Always ready for exploration, with an impressive cargo space and the option of seven seats."
},
"JLRCode": "Ignore"
},
"compatibility": [
{
"definer-name": "PRODUCT",
"refs": "A-S-P300-110 A-S-P400-110 A-XDYN-SE-P400-110 A-X-P400-110 A-LE17-P400-110 A-LE18-P400-110 A-XDYN-SE-P500-110 A-XV8-P525-110"
},
{
"definer-name": "ENGINE",
"refs": "A-P300-110 A-P400-110 A-P500-110 A-P525-110"
},
{
"definer-name": "FUEL_TYPE",
"refs": "P"
},
{
"definer-name": "MODEL",
"refs": "A-L663-S A-XDYN-SE A-X A-LE17 A-LE18 A-SV8"
}
]
}
]
},
{
"name": "MODEL",
"type": "product",
"description": {
"en": "Model"
},
"feature": [
{
"id": "A-L663-S",
"availability": "default",
"description": {
"en": "Defender S"
},
"price": {
"GROSS": {
"currency": "USD",
"value": "0.00"
},
"NET": {
"currency": "USD",
"value": "0.00"
}
},
"property": {
"WarrantyCardSummary": {
"en": "N-ELITECARE1"
},
"JLRCode": "Ignore"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110_a-l663-s/.jsonp?view=summary"
}
],
"compatibility": [
{
"definer-name": "PRODUCT",
"refs": "A-S-P300 A-S-P300-110 A-S-P400-110 A-S-P300-130"
},
{
"definer-name": "ENGINE",
"refs": "A-P300 A-P300-110 A-P400-110 A-P300-130"
},
{
"definer-name": "FUEL_TYPE",
"refs": "P"
},
{
"definer-name": "BODYSTYLE",
"refs": "A-90 A-110 A-130"
}
]
}
]
},
{
"name": "ENGINE",
"type": "product",
"description": {
"en": "Engine"
},
"feature": [
{
"id": "A-P300-110",
"availability": "default",
"description": {
"en": "2.0L 4 Cylinder"
},
"price": {
"GROSS": {
"currency": "USD",
"value": "0.00"
},
"NET": {
"currency": "USD",
"value": "0.00"
}
},
"property": {
"ExtendedDescription": {
"en": "Ingenium 2,0 liter 4-cylinder 296 Hp Turbocharged Gas (Automatic) All Wheel Drive"
},
"JLRCode": "Ignore",
"FuelType": "P"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110_a-p300-110/.jsonp?view=summary"
}
],
"compatibility": [
{
"definer-name": "PRODUCT",
"refs": "A-S-P300-110"
},
{
"definer-name": "FUEL_TYPE",
"refs": "P"
},
{
"definer-name": "MODEL",
"refs": "A-L663-S"
},
{
"definer-name": "BODYSTYLE",
"refs": "A-110"
}
]
}
]
},
{
"name": "PRODUCT",
"type": "product",
"description": {
"en": "PRODUCT"
},
"feature": [
{
"id": "A-S-P300-110",
"availability": "default",
"description": {
"en": "DEFENDER S\nIngenium 2,0 liter 4-cylinder 296 Hp Turbocharged Gas (Automatic)\nAll Wheel Drive"
},
"price": {
"GROSS": {
"currency": "USD",
"value": "63500.00"
},
"NET": {
"currency": "USD",
"value": "63500.00"
}
},
"property": {
"DerivativePackCode": "351CA",
"DerivativeModelCode": "AC663",
"definition": "A-110 P A-P300-110 A-L663-S",
"JLRCode": "Ignore",
"5000Code": "5002296833"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110_a-l663-s_a-p300-110_p/.jsonp?view=summary"
}
]
}
]
},
{
"name": "EXTERIOR",
"type": "multi",
"description": {
"en": "Exterior"
},
"property": {
"Accordion": "exterior"
},
"feature-list": [
{
"name": "PAINT_COLOUR",
"type": "mutex1",
"description": {
"en": "Colors"
},
"property": {
"CarouselMoreInfo": "Y",
"Style": "categoriesgrid"
},
"feature": [
{
"id": "N-1AA",
"availability": "default",
"preferred": "y",
"description": {
"en": "Fuji White"
},
"price": {
"GROSS": {
"currency": "USD",
"value": "0.00"
},
"NET": {
"currency": "USD",
"value": "0.00"
}
},
"property": {
"ExtendedDescription": {
"en": "Inspired by the soaring snow-tipped summit of Japan's highest mountain, Mount Fuji, this Solid white supplies a bold, bright look."
},
"JLRCode": "1AA"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-1aa/.jsonp?view=summary"
}
]
}
]
},
{
"name": "PAINT_OPTIONS",
"type": "mutex1",
"description": {
"en": "Color Finish"
},
"property": {
"Style": "text"
},
"feature": [
{
"id": "A-GLOSS",
"availability": "default",
"preferred": "y",
"description": {
"en": "Gloss finish"
},
"property": {
"JLRCode": "087FA"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-gloss/.jsonp?view=summary"
}
]
}
]
},
{
"name": "ROOF_COLOUR",
"type": "mutex1",
"description": {
"en": "Roof Color"
},
"property": {
"Style": "grid"
},
"feature": [
{
"id": "N-080AC",
"availability": "default",
"preferred": "y",
"description": {
"en": "Body-colored roof"
},
"property": {
"JLRCode": "080AC"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-080ac/.jsonp?view=summary"
}
]
}
]
},
{
"name": "GLASS",
"type": "mutex1",
"description": {
"en": "Glass"
},
"property": {
"Style": "text"
},
"feature": [
{
"id": "N-047DB",
"availability": "default",
"preferred": "y",
"description": {
"en": "Privacy glass"
},
"property": {
"ExtendedDescription": {
"en": "Provides increased privacy for rear passengers by restricting vision into the rear cabin.\n\nExclusive to the tail door window on Defender Hard Top."
},
"Ext3D": "350",
"JLRCode": "047DB"
},
"media": [
{
"name": "ExImageOption:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exopt_l663_k26_n-047db_a-110_a-5seats_a-l663-s_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskOption:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exoptmask_l663_k26_n-047db_a-110_a-5seats_a-l663-s_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetOption",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exopt_l663_k26_n-047db_a-110_a-5seats_a-l663-s_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-047db/.jsonp?view=summary"
}
]
}
]
},
{
"name": "REFLECTORS",
"type": "mutex1",
"description": {
"en": "Side Marker Lamps"
},
"feature": [
{
"id": "A-REFLECTOR",
"availability": "default",
"preferred": "y",
"description": {
"en": "Amber Side Marker Lamps"
},
"property": {
"Ext3D": "452",
"JLRCode": "Ignore"
},
"media": [
{
"name": "ExImageOption:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exopt_l663_k26_a-reflector_a-110_a-5seats_a-l663-s_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskOption:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exoptmask_l663_k26_a-reflector_a-110_a-5seats_a-l663-s_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetOption",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exopt_l663_k26_a-reflector_a-110_a-5seats_a-l663-s_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-reflector/.jsonp?view=summary"
}
]
}
]
}
]
},
{
"name": "WHEEL_CONFIGURATION",
"type": "multi",
"description": {
"en": "Wheels"
},
"property": {
"Accordion": "exterior"
},
"feature-list": [
{
"name": "WHEEL",
"type": "mutex1",
"description": {
"en": ""
},
"property": {
"Style": "categoriesgrid"
},
"feature": [
{
"id": "N-031SV",
"availability": "included",
"preferred": "y",
"description": {
"en": "19\" Style 6010 wheels"
},
"property": {
"ExtendedDescription": {
"en": "Please Note: When choosing vehicles fitted with specific wheel and Tire combinations or optional wheels and Tires, your intended use of the vehicle should be considered. Wheels with larger diameters and lower profile Tires may offer certain styling or driving benefits, please discuss your requirements with your Defender Retailer when selecting your vehicle and specification."
},
"Group": "W19",
"JLRCode": "031SV"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-031sv/.jsonp?view=summary"
}
]
}
]
},
{
"name": "OPTIONS_WHEELS",
"type": "mutex1",
"description": {
"en": "Tires"
},
"property": {
"Style": "text"
},
"feature": [
{
"id": "N-030IA",
"availability": "default",
"preferred": "y",
"description": {
"en": "All-season Tires"
},
"property": {
"JLRCode": "030IA"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-030ia/.jsonp?view=summary"
}
]
}
]
},
{
"name": "WHEEL_ADDITIONS",
"type": "mutex1",
"description": {
"en": "Spare Wheel Covers"
},
"property": {
"Style": "text"
},
"feature": [
{
"id": "A-050AK",
"availability": "default",
"preferred": "y",
"description": {
"en": "Without Spare Wheel Cover"
},
"property": {
"JLRCode": "328AA"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-050ak/.jsonp?view=summary"
}
]
}
]
}
]
},
{
"name": "EXTERIOR_FEATURES",
"type": "multi",
"description": {
"en": "Accessory Packs"
},
"feature-list": []
},
{
"name": "INTERIOR",
"type": "multi",
"description": {
"en": "Interior"
},
"property": {
"Accordion": "interior"
},
"feature-list": [
{
"name": "SEAT_NUMBER",
"type": "mutex1",
"description": {
"en": "Seat Configuration"
},
"property": {
"Style": "text"
},
"feature": [
{
"id": "A-5SEATS",
"availability": "default",
"preferred": "y",
"description": {
"en": "5 seats"
},
"property": {
"JLRCode": "033AV"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-5seats/.jsonp?view=summary"
}
]
}
]
},
{
"name": "TRIM",
"type": "mutex1",
"description": {
"en": "Trim"
},
"property": {
"Style": "categoriesgrid"
},
"feature": [
{
"id": "N-304NE",
"availability": "included",
"preferred": "y",
"description": {
"en": "Ebony Resist and Resolve seats with\u00a0Ebony interior\u200b"
},
"property": {
"JLRCode": "304NE"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-304ne/.jsonp?view=summary"
}
]
}
]
},
{
"name": "FINISH",
"type": "mutex1",
"description": {
"en": "Finishers"
},
"property": {
"Style": "carousel"
},
"feature": [
{
"id": "A-088RE-E",
"availability": "default",
"preferred": "y",
"description": {
"en": "Ebony finisher"
},
"property": {
"Int3D": "320",
"JLRCode": "Ignore"
},
"media": [
{
"name": "InImageOption:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_a-088re-e_a-110_n-033xn_n-041cz_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskOption:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_a-088re-e_a-110_n-033xn_n-041cz_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetOption",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_a-088re-e_a-110_n-033xn_n-041cz_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-088re-e/.jsonp?view=summary"
}
]
}
]
},
{
"name": "FINISH_CROSS_BEAM",
"type": "mutex1",
"description": {
"en": "Cross car beam"
},
"property": {
"Style": "grid"
},
"feature": [
{
"id": "N-245AH",
"availability": "default",
"preferred": "y",
"description": {
"en": "Cross vehicle beam in Light Cloud Powder\u00a0Coat finish"
},
"property": {
"Int3D": "210",
"JLRCode": "245AH"
},
"media": [
{
"name": "InImageOption:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-245ah_a-110_n-033xn_n-041cz_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskOption:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_n-245ah_a-110_n-033xn_n-041cz_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetOption",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-245ah_a-110_n-033xn_n-041cz_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-245ah/.jsonp?view=summary"
}
]
}
]
},
{
"name": "SEAT_UPGRADE",
"type": "mutex1",
"description": {
"en": "Interior upgrades"
},
"property": {
"Style": "text"
},
"feature": [
{
"id": "N-032HM",
"availability": "default",
"preferred": "y",
"description": {
"en": "Standard Interior"
},
"property": {
"JLRCode": "032HM"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-032hm/.jsonp?view=summary"
}
]
}
]
},
{
"name": "INTERIOR_DIALS",
"type": "mutex1",
"description": {
"en": "Climate Dials"
},
"feature": [
{
"id": "A-INTDIALS",
"availability": "default",
"preferred": "y",
"description": {
"en": "Climate Temperature Dials"
},
"property": {
"Int3D": "480",
"JLRCode": "Ignore"
},
"media": [
{
"name": "InImageOption:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_a-intdials_a-110_n-033xn_n-041cz_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskOption:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_a-intdials_a-110_n-033xn_n-041cz_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetOption",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_a-intdials_a-110_n-033xn_n-041cz_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-intdials/.jsonp?view=summary"
}
]
}
]
}
]
},
{
"name": "INTERIOR_FEATURES",
"type": "multi",
"description": {
"en": "Interior Features"
},
"feature-list": [
{
"name": "HEADLINING",
"type": "mutex1",
"description": {
"en": "Headlining"
},
"property": {
"Accordion": "interior",
"Style": "grid"
},
"feature": [
{
"id": "N-188NR",
"availability": "default",
"preferred": "y",
"description": {
"en": "Light Cloud headlining"
},
"property": {
"Int3D": "205",
"JLRCode": "188NR"
},
"media": [
{
"name": "InImageSeatNumberedOption2:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-188nr_a-110_a-5seats_n-033xn_n-041cz_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskSeatNumberedOption2:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_n-188nr_a-110_a-5seats_n-033xn_n-041cz_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetSeatNumberedOption2",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-188nr_a-110_a-5seats_n-033xn_n-041cz_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-188nr/.jsonp?view=summary"
}
]
}
]
}
]
},
{
"name": "OPTIONS",
"type": "multi",
"description": {
"en": "Options"
},
"property": {
"Style": "featureBasket"
},
"feature-list": [
{
"name": "OPTIONS_CONFIGURATION",
"type": "multi",
"description": {
"en": "Options"
},
"property": {
"Accordion": "options",
"Style": "featureBasket"
},
"feature-list": [
{
"name": "ROOF_PANO_OPTION",
"type": "mutex1",
"description": {
"en": "Roof Type"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-041CZ",
"availability": "default",
"preferred": "y",
"description": {
"en": "Sliding panoramic roof"
},
"property": {
"ExtendedDescription": {
"en": "A full-size sliding panoramic tinted glass roof, designed to provide abundant light and space, plus high solar protection. An electric sunblind extends for extra shade or privacy."
},
"Ext3D": "375",
"JLRCode": "041CZ"
},
"media": [
{
"name": "ExImageBodyColouredOption3:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exbcopt_l663_k26_n-041cz_a-110_n-1aa_n-080ac_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskBodyColouredOption3:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exbcoptmask_l663_k26_n-041cz_a-110_n-080ac_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetBodyColouredOption3",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exbcopt_l663_k26_n-041cz_a-110_n-080ac_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-041cz/.jsonp?view=summary"
}
]
}
]
},
{
"name": "ROOF_RAILS",
"type": "mutex1",
"description": {
"en": "Roof Rails"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-060AW",
"availability": "default",
"preferred": "y",
"description": {
"en": "Black roof rails"
},
"property": {
"ExtendedDescription": {
"en": "Roof rails facilitate easy fitment of cross bars for roof carrying. Pre-set positioning points ensure cross bars are fixed in optimum position for weight distribution and dynamics.\n\nMaximum payload is 220 lbs. Maximum payload equals the load capacity of the roof mounted accessory.\n\nObjects placed above the roof mounted satellite antenna may reduce the quality of the signal received by the vehicle and could have a detrimental effect on the navigation and satellite radio systems, if fitted."
},
"Ext3D": "650",
"JLRCode": "060AW"
},
"media": [
{
"name": "ExImageOption3:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exopt_l663_k26_n-060aw_a-110_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskOption3:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exoptmask_l663_k26_n-060aw_a-110_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetOption3",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exopt_l663_k26_n-060aw_a-110_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-060aw/.jsonp?view=summary"
}
]
}
]
},
{
"name": "HEADLIGHTS_TYPE",
"type": "mutex1",
"description": {
"en": "Exterior Lighting"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-064QB",
"availability": "default",
"preferred": "y",
"description": {
"en": "LED headlights with signature DRL"
},
"property": {
"ExtendedDescription": {
"en": "Premium LED headlights feature the distinct exterior graphic of the Signature Daytime Running Lights (DRL)."
},
"JLRCode": "064QB"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-064qb/.jsonp?view=summary"
}
]
}
]
},
{
"name": "C_PILLAR",
"type": "mutex1",
"description": {
"en": "Signature Graphic"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-047AX",
"availability": "default",
"preferred": "y",
"description": {
"en": "Signature graphic"
},
"property": {
"ExtendedDescription": {
"en": "Defender's signature graphic demonstrating its strength and proportions."
},
"Ext3D": "705",
"JLRCode": "047AX"
},
"media": [
{
"name": "ExImageBodyColouredModelOption3:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exbcopt_l663_k26_n-047ax_a-110_n-1aa_a-l663-s_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskBodyColouredModelOption3:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exbcoptmask_l663_k26_n-047ax_a-110_a-l663-s_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetBodyColouredModelOption3",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/option/exbcopt_l663_k26_n-047ax_a-110_a-l663-s_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-047ax/.jsonp?view=summary"
}
]
}
]
},
{
"name": "EXT_FEATURES",
"type": "multi",
"description": {
"en": "Exterior Features"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-GBGB",
"availability": "standard",
"description": {
"en": "Gloss Black Grille Bar"
}
},
{
"id": "A-XDSSSFR",
"availability": "standard",
"description": {
"en": "Satin Silicon Silver front and rear skid pan"
}
},
{
"id": "A-XDSSSBADGE",
"availability": "standard",
"description": {
"en": "Satin Silicon Silver badging"
}
},
{
"id": "A-165AC-STD",
"availability": "standard",
"description": {
"en": "Body-colored hood"
}
},
{
"id": "N-030RJ",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Heated, electric, power fold door mirrors with approach lights and auto-dimming driver side"
},
"property": {
"JLRCode": "030RJ"
}
},
{
"id": "N-030NT",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Auto High Beam Assist (AHBA)"
},
"property": {
"ExtendedDescription": {
"en": "The high beam automatically dips when oncoming traffic is detected. Full height is restored when vehicles have passed."
},
"JLRCode": "030NT"
}
},
{
"id": "A-UNC014-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Electric Parking Brake (EPB)"
},
"property": {
"ExtendedDescription": {
"en": "Simply activate the Electric Parking Brake using a button and Defender is securely parked."
}
}
},
{
"id": "A-UNC015-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Brake pad wear indicator"
},
"property": {
"ExtendedDescription": {
"en": "Brake Pad Wear Indicator alerts you when you need to replace your brake pads."
}
}
},
{
"id": "A-UNC038-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Emergency Brake Assist"
},
"property": {
"ExtendedDescription": {
"en": "Emergency Brake Assist understands when you apply the brakes quickly but without the necessary force to maximize stopping performance. It therefore boosts the brake pressure through the ABS pump to ensure you stop in time. To help reduce the risk of a collision, the Emergency Stop Signal system automatically activates the hazard warning lights during emergency braking."
}
}
},
{
"id": "A-UNC120-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Anti-lock Braking System (ABS)"
},
"property": {
"ExtendedDescription": {
"en": "Defender's Anti-lock Braking System (ABS) prevents wheel lockup under braking, thereby retaining the vehicle's ability to steer and generally shortens braking distance"
}
}
},
{
"id": "A-UNC123-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Electronic Brake-force Distribution (EBD)"
},
"property": {
"ExtendedDescription": {
"en": "Automatically varies the braking force to each axle in order to minimize stopping distance, while still maintaining stability and the vehicle\u2019s ability to steer."
}
}
},
{
"id": "A-UNC017-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Electric windows with one-touch open/close and anti-trap"
}
},
{
"id": "A-UNC129-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Heated rear window with timer"
}
},
{
"id": "A-UNC131-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Rear wash wiper"
}
},
{
"id": "A-UNC280-STD",
"availability": "standard",
"description": {
"en": "Alpine lights"
},
"property": {
"ExtendedDescription": {
"en": "A nod to the past, these help bathe the cabin in light and provide a view to the outside."
}
}
},
{
"id": "A-UNC279-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Side-hinged tailgate"
}
},
{
"id": "N-090GC",
"availability": "standard",
"description": {
"en": "Standard tail door"
}
}
]
},
{
"name": "OPTIONS_LIGHTING",
"type": "multi",
"description": {
"en": "Exterior Lighting"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-UNC130-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Automatic headlights and rain sensing wipers"
},
"property": {
"ExtendedDescription": {
"en": "Automatic headlights will switch on when low light is detected and rain will be cleared from the windshield without driver intervention."
}
}
},
{
"id": "A-064BR-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Automatic Headlight Leveling"
}
},
{
"id": "N-064AP-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Front fog lights"
},
"property": {
"ExtendedDescription": {
"en": "Full LED front fog lights seamlessly integrate with your vehicle, combining style and functionality."
}
}
},
{
"id": "A-064BN-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Puddle lights"
}
},
{
"id": "A-UNC151-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Follow me home lighting"
}
},
{
"id": "A-UNC587-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Center high-mounted stop light"
}
},
{
"id": "A-064HU-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Darkened tail lights"
}
},
{
"id": "A-UNC134-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Rear fog lights"
}
}
]
},
{
"name": "POWER_WASH",
"type": "mutex1",
"description": {
"en": "Headlight Wash"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-064BW",
"availability": "default",
"preferred": "y",
"description": {
"en": "Non-Heated Power Wash"
},
"property": {
"JLRCode": "064BW"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-064bw/.jsonp?view=summary"
}
]
}
]
},
{
"name": "WINDSCREEN",
"type": "mutex1",
"description": {
"en": "Windshield"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-040AK",
"availability": "default",
"preferred": "y",
"description": {
"en": "Non-Heated windshield"
},
"property": {
"JLRCode": "040AJ"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-040ak/.jsonp?view=summary"
}
]
}
]
},
{
"name": "SEATING_OPTIONS",
"type": "multi",
"description": {
"en": "Seat Options"
},
"property": {
"Style": "featureBasket"
},
"feature-list": [
{
"name": "SEAT_FRONT_SEAT",
"type": "mutex1",
"description": {
"en": "Console configuration"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-045AS",
"availability": "default",
"preferred": "y",
"description": {
"en": "Center console with armrest"
},
"property": {
"Int3D": "340",
"JLRCode": "045AS"
},
"media": [
{
"name": "InImageTrimColouredOption3:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-045as_a-110_n-304ne_n-245ah_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskTrimColouredOption3:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_n-045as_a-110_n-304ne_n-245ah_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetTrimColouredOption3",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-045as_a-110_n-304ne_n-245ah_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-045as/.jsonp?view=summary"
}
]
}
]
},
{
"name": "SEAT_TECHNOLOGY",
"type": "mutex1",
"description": {
"en": "Seating functionality"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-033XN",
"availability": "included",
"preferred": "y",
"description": {
"en": "12-way heated, electric memory front seats with 2-way manual headrests"
},
"property": {
"ExtendedDescription": {
"en": "Includes driver's/passenger powered adjustment of: \n- Cushion forward/backward\n- Cushion height\n- Cushion tilt\n- Power squab recline\n- 4-way lumbar\n\nDriver &amp; Passenger seat memory + exterior mirrors with memory"
},
"JLRCode": "033XN"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-033xn/.jsonp?view=summary"
}
]
}
]
},
{
"name": "SEAT_REAR_SEATS",
"type": "mutex1",
"description": {
"en": "Rear seat options"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-300KC",
"availability": "default",
"preferred": "y",
"description": {
"en": "40:20:40 folding rear seats with Center armrest"
},
"property": {
"JLRCode": "300KC"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-300kc/.jsonp?view=summary"
}
]
}
]
}
]
},
{
"name": "INT_FEATURES",
"type": "multi",
"description": {
"en": "Interior Features"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-PVVTLS",
"availability": "standard",
"description": {
"en": "Resist and Resolve Seats"
}
},
{
"id": "N-049AL",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Electrically adjustable steering column"
},
"property": {
"ExtendedDescription": {
"en": "For added convenience, this feature allows electrical adjustment of the steering column's reach and rake. Adjustment memory is linked to seat positioning with memory seats."
},
"Int3D": "405",
"JLRCode": "049AL"
}
},
{
"id": "A-026SA-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Twin front cupholders"
}
},
{
"id": "A-115AB-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Sunvisors with illuminated vanity mirrors"
}
},
{
"id": "N-022AY",
"availability": "standard",
"description": {
"en": "Two-zone Climate Control"
},
"property": {
"ExtendedDescription": {
"en": "Automatic Two-zone Climate Control with solar and mist sensing."
},
"JLRCode": "022AY"
}
},
{
"id": "A-030CV-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Footwell lights"
}
},
{
"id": "N-048BF",
"availability": "standard",
"description": {
"en": "Standard treadplates"
}
},
{
"id": "N-064LB",
"availability": "standard",
"description": {
"en": "Cabin lighting"
},
"property": {
"JLRCode": "064LB"
}
},
{
"id": "A-UNC139-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Glovebox storage"
}
},
{
"id": "A-033DB-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Rear Center headrest"
}
},
{
"id": "A-064MA-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Rear reading lights"
}
},
{
"id": "A-UNC228-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Durable rubber cabin flooring"
}
},
{
"id": "N-079AJ",
"availability": "standard",
"description": {
"en": "Carpet mats"
},
"property": {
"JLRCode": "079AJ"
}
},
{
"id": "A-UNC229-STD",
"availability": "standard",
"description": {
"en": "Durable rubber Cargo space flooring"
}
},
{
"id": "A-UNC111-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Hooks in Cargo space"
}
},
{
"id": "N-063AH",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Cargo space cover"
},
"property": {
"JLRCode": "063AH"
}
}
]
},
{
"name": "STEERING_WHEEL_MATERIAL",
"type": "mutex1",
"description": {
"en": "Steering Wheel"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-032NY",
"availability": "default",
"preferred": "y",
"description": {
"en": "Standard non-leather steering wheel"
},
"property": {
"ExtendedDescription": {
"en": "Feel the comfort at every turn with this non-leather steering wheel finish."
},
"Int3D": "320",
"JLRCode": "032NY"
},
"media": [
{
"name": "InImageSeatNumberedOption3:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-032ny_a-110_a-5seats_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskSeatNumberedOption3:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_n-032ny_a-110_a-5seats_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetSeatNumberedOption3",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-032ny_a-110_a-5seats_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-032ny/.jsonp?view=summary"
}
]
}
]
},
{
"name": "HEATED_STEER",
"type": "mutex1",
"description": {
"en": "Heated Steering"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-032DV",
"availability": "default",
"preferred": "y",
"description": {
"en": "Heated steering wheel"
},
"property": {
"ExtendedDescription": {
"en": "Heated steering wheel for the ultimate driver comfort in colder temperatures."
},
"Int3D": "401",
"JLRCode": "032DV"
},
"media": [
{
"name": "InImageSeatNumberedOption3:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-032dv_a-110_a-5seats_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskSeatNumberedOption3:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_n-032dv_a-110_a-5seats_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetSeatNumberedOption3",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-032dv_a-110_a-5seats_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-032dv/.jsonp?view=summary"
}
]
}
]
},
{
"name": "GEARSHIFT",
"type": "mutex1",
"description": {
"en": "Gearshift"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-117AX",
"availability": "default",
"preferred": "y",
"description": {
"en": "Resist gearshift"
},
"property": {
"ExtendedDescription": {
"en": "The ideal finishing touch to our Resist and Resolve, Resist, and Ultrafabrics\u2122 trims, finished in non-leather PVU soft-grain material."
},
"Int3D": "430",
"JLRCode": "117AX"
},
"media": [
{
"name": "InImageSeatNumberedOption3:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-117ax_a-110_a-5seats_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskSeatNumberedOption3:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_n-117ax_a-110_a-5seats_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetSeatNumberedOption3",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-117ax_a-110_a-5seats_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-117ax/.jsonp?view=summary"
}
]
}
]
},
{
"name": "DISPLAY",
"type": "mutex1",
"description": {
"en": "Display"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-039IA",
"availability": "default",
"preferred": "y",
"description": {
"en": "Without Head-up Display"
},
"property": {
"Int3D": "350",
"JLRCode": "039IA"
},
"media": [
{
"name": "InImageSeatNumberedOption3:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_a-039ia_a-110_a-5seats_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskSeatNumberedOption3:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_a-039ia_a-110_a-5seats_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetSeatNumberedOption3",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_a-039ia_a-110_a-5seats_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/a-039ia/.jsonp?view=summary"
}
]
}
]
},
{
"name": "OPTIONS_INFOTAINMENT",
"type": "multi",
"description": {
"en": "Infotainment"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-087AW-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "13.1\" Touchscreen"
},
"property": {
"ExtendedDescription": {
"en": "The 13.1-inch touchscreen brings you closer to your Defender's features with an immersive display. Customise effortlessly and enjoy enhanced ease of use."
},
"JLRCode": "087AX"
}
},
{
"id": "N-183CB",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Android Auto\u2122 (subject to availability)"
},
"property": {
"ExtendedDescription": {
"en": "Your vehicle is prepared for Android Auto\u2122. By connecting your compatible smartphone with Pivi, you can stay safely connected to your smartphone even while driving. \n\nThe services offered by Android Auto depends on feature availability in your country, please see https://www.android.com/intl/en_uk/auto/ for more information. Google Play Store is a trademark of Google LLC.\u200b"
}
}
},
{
"id": "A-183AB-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Apple CarPlay\u00ae (subject to availability)"
}
},
{
"id": "N-025RM",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Online Pack with Data Plan"
},
"property": {
"JLRCode": "025RM"
}
},
{
"id": "N-026LD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Pivi Pro"
}
},
{
"id": "N-025LM",
"availability": "standard",
"description": {
"en": "Meridian\u2122 Sound System"
},
"property": {
"ExtendedDescription": {
"en": "British-based Meridian\u2122 Audio are all about the musical experience \u2013 the very sense of being there. Their award-winning, precision-engineered audio systems are built on a lifetime of research into psychoacoustics (the science of how the human brain perceives sound) to deliver a performance that is so true to life, you feel every beat, every breath. \n\nFeel the rhythm of the music with exceptional definition, crystal-clear highs and full, deep bass with this classic audiophile sound stage. Through the careful management of door-mounted speakers placed nearest your seat, you'll enjoy a performance that is incredibly smooth, clean and free of strain.\n\n- 400W Amplifier Power\n- 10 speakers and a dual-channel subwoofer\n- Meridian Digital Signal Processing\n- Meridian Cabin Correction\n- Meridian Digital Dither Shaping\n\nMeridian is a registered trademark of Meridian Audio Ltd."
},
"Int3D": "300",
"JLRCode": "025LM"
}
},
{
"id": "N-025LA",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Sirius XM\u2122 satellite radio and HD radio"
},
"property": {
"JLRCode": "025LA"
}
},
{
"id": "A-095PG-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "12V power socket in Cargo space"
}
},
{
"id": "A-UNC166-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Trip computer"
}
}
]
},
{
"name": "OPTIONS_CONVENIENCE",
"type": "multi",
"description": {
"en": "Convenience"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-031CG",
"availability": "standard",
"description": {
"en": "Auto-dimming interior rear view mirror"
},
"property": {
"ExtendedDescription": {
"en": "Automatically reduces the glare of headlights from vehicles behind you."
},
"JLRCode": "031CG"
}
},
{
"id": "N-011BJ",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Remote"
},
"property": {
"ExtendedDescription": {
"en": "With the Remote App, your vehicle is always in the palm of your hand. Preset your navigation, confirm your vehicle\u2019s location, check fuel levels and set the interior temperature \u2013 all before you\u2019ve opened the vehicle door. \n\nWe hope you never have use of these features, but with Defender optimized Assistance you can make a direct call to the Defender Assistance team by pressing the button on the overhead console or from the Assistance screen within the Remote app. \n\nIn a more serious incident, SOS Emergency Call will automatically connect you to the emergency response team who will notify the emergency services to your location. The Remote App will need to be downloaded from the Apple App Store/Google Play Store.\u200b\n\nPivi and InControl features, options, third party services and their availability remain market dependent \u2013 check with your Defender Retailer for local market availability and full terms. Certain features come with a subscription which will require further renewal after the initial term advised by your Retailer. Mobile network connectivity cannot be guaranteed in all locations. Information and images displayed in relation to the InControl technology, including screens or sequences, are subject to software updates, version control and other system/visual changes depending on options selected."
},
"JLRCode": "011BJ"
}
},
{
"id": "N-026JB",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Wireless device charging"
},
"property": {
"ExtendedDescription": {
"en": "Seamlessly tops up your phone\u2019s battery life, providing complete convenience."
},
"JLRCode": "026JB"
}
},
{
"id": "N-054DB",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Domestic plug socket"
},
"property": {
"ExtendedDescription": {
"en": "A power supply in the rear cargo. Power whatever, wherever, whenever: from mini fridges to electric air pumps."
},
"JLRCode": "054DB"
}
},
{
"id": "N-025CT",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Garage Door Opener (HomeLink\u00ae)"
},
"property": {
"ExtendedDescription": {
"en": "The HomeLink\u00ae System is a universal transmitter fitted to the underside of the interior rear view mirror. This transmitter can be program to operate up to 3 home or office wireless controlled systems, such as garage doors, automatic gates, or security lighting. By replacing the individual remote control units normally required for each system, the driver no longer needs to search the vehicle interior for the correct handset when needed.\n\nHomeLink\u00ae is the registered trademark of Gentex Corporation."
},
"JLRCode": "025CT"
}
},
{
"id": "A-066AC-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Keyless Entry"
}
}
]
},
{
"name": "OPTIONS_TOWING",
"type": "multi",
"description": {
"en": "Towing"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-UNC135-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Trailer Stability Assist (TSA)"
},
"property": {
"ExtendedDescription": {
"en": "TSA detects when a dangerous trailer sway situation is developing, and helps to regain control by gradually reducing speed through cutting engine power and applying the brakes. If necessary, it will apply brakes individually on each side of the vehicle to control the sway."
}
}
}
]
},
{
"name": "SAFETY_CONFIGURATION",
"type": "multi",
"description": {
"en": "Safety and Security"
},
"property": {
"Style": "featureBasket"
},
"feature-list": [
{
"name": "OPTIONS_SAFETY",
"type": "multi",
"description": {
"en": "Safety and Security"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-076DA",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Perimetric alarm"
},
"property": {
"ExtendedDescription": {
"en": "The Perimetric Alarm is activated automatically whenever the vehicle is locked using the remote control. Protects the doors, Hood and tailgate."
}
}
},
{
"id": "N-062AD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Tire Pressure Monitoring System (TPMS)"
},
"property": {
"ExtendedDescription": {
"en": "Defender's Tire Pressure Monitoring System (TPMS) shows an amber warning light when Tire pressure is low."
},
"Ext3D": "757",
"JLRCode": "062AD"
}
},
{
"id": "A-UNC005-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Customer Configurable Autolock"
}
},
{
"id": "A-UNC040-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Power operated child locks"
}
},
{
"id": "A-UNC041-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Seat belt reminder"
}
},
{
"id": "A-UNC106-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Rear LATCH"
},
"property": {
"ExtendedDescription": {
"en": "LATCH is the safest and easiest way to install a child's vehicle seat."
}
}
},
{
"id": "A-066AA-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Push Button Start"
}
},
{
"id": "A-UNC042-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Front airbags, with passenger seat occupant detector"
}
}
]
}
]
},
{
"name": "OPTIONS_TRANSMISSION",
"type": "multi",
"description": {
"en": "Transmission and Dynamics"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-088CP",
"availability": "standard",
"description": {
"en": "Terrain Response"
}
},
{
"id": "A-109AA-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "All Wheel Drive (AWD)"
}
},
{
"id": "A-043BF-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Twin-speed transfer box (high/low range)"
}
},
{
"id": "A-078BT-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "8-speed Automatic Transmission"
}
},
{
"id": "A-UNC009-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Hill Launch Assist"
},
"property": {
"ExtendedDescription": {
"en": "Helping the driver pull away safely and smoothly on steep uphill inclines, Hill Launch Assist holds the brakes briefly to prevent the vehicle rolling backwards."
}
}
},
{
"id": "A-UNC011-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Electric Power Assisted Steering (EPAS)"
},
"property": {
"ExtendedDescription": {
"en": "Electric Power Assisted Steering (EPAS) offers outstanding feedback adapting to the vehicle's conditions. It's also active on demand, reducing CO\u2082 emissions by up to 3 percent compared to a hydraulic system. EPAS' sophisticated computer management varies steering assistance as appropriate \u2013 increasing assistance for low-speed maneuvering and improving feel at higher speeds."
}
}
},
{
"id": "A-UNC039-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Dynamic Stability Control (DSC)"
},
"property": {
"ExtendedDescription": {
"en": "Dynamic Stability Control (DSC) monitors the vehicle's dynamic behavior and intervenes if it determines the vehicle isn\u2019t responding to the driver\u2019s inputs. The DSC system operates by reducing engine torque and/or applying the brakes on selected wheels to correct the car\u2019s cornering attitude. In addition to the ability to brake individual wheels to counteract understeer or oversteer conditions, the latest DSC system has enhanced understeer control, which applies braking to all four wheels to reduce vehicle speed and regain control more effectively."
}
}
},
{
"id": "A-UNC116-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Low traction launch"
},
"property": {
"ExtendedDescription": {
"en": "Low Traction Launch maximizes traction when pulling away on slippery surfaces. It automatically controls the amount of torque sent to each wheel, preventing wheelspin and maximizing drive."
}
}
},
{
"id": "A-UNC117-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Electronic Traction Control (ETC)"
},
"property": {
"ExtendedDescription": {
"en": "optimizes traction and stability by controlling wheel spin. The ETC system reduces torque to the spinning wheel, then applies braking to the wheel, if required."
}
}
},
{
"id": "A-UNC118-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Roll Stability Control (RSC)"
},
"property": {
"ExtendedDescription": {
"en": "Roll Stability Control (RSC) is integrated with Dynamic Stability Control (DSC) to reduce the possibility of rollover, while providing agility and ability to steer around an obstacle or other road user. It monitors the vehicle motion and cornering forces to detect any occurrence of critical rollover risk. In critical cases, braking is applied to the outside front wheel to reduce forces which contribute to rollover risk."
}
}
},
{
"id": "A-UNC122-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Cornering Brake Control (CBC)"
},
"property": {
"ExtendedDescription": {
"en": "CBC is a feature that automatically varies the braking force in each wheel when the vehicles brakes are applied around a corner and the limit of grip is reached. The system will prevent the vehicles wheels from locking up and skidding in this event through varying the braking force applied in each wheel."
}
}
},
{
"id": "A-020AR-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Hill Descent Control (HDC)"
},
"property": {
"ExtendedDescription": {
"en": "Hill Descent Control (HDC) restricts the vehicle to a nominal or driver adjustable target speed if the vehicle begins to move downhill. HDC also includes Gradient Release Control (GRC) and Gradient Acceleration Control (GAC). Gradient Release Control releases the brake gently when vehicle is on a hill. While Gradient Acceleration Control limits acceleration to 3mph if the vehicle begins rolling downhill in gear."
}
}
},
{
"id": "A-UNC276-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Brake Hold"
}
}
]
},
{
"name": "SUSPENSION",
"type": "mutex1",
"description": {
"en": "Suspension"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-027CI",
"availability": "default",
"preferred": "y",
"description": {
"en": "Coil suspension"
},
"property": {
"ExtendedDescription": {
"en": "A fully independent coil sprung suspension system that combines double wishbones at the front with an advanced multi-link rear suspension design to create an agile and responsive chassis. Ride comfort and stability when heavily laden are optimized through the use of\u00a0secondary spring\u00a0aids\u00a0incorporated within the rear suspension.\n\nNote: When coil suspension is selected, Electronic Air Suspension and Adaptive Dynamics will be removed."
},
"JLRCode": "027CI"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-027ci/.jsonp?view=summary"
}
]
}
]
},
{
"name": "SPARE_WHEELS",
"type": "mutex1",
"description": {
"en": "Spare Wheels"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-028MB",
"availability": "included",
"preferred": "y",
"description": {
"en": "19\" full size spare wheel"
},
"property": {
"ExtendedDescription": {
"en": "Full size spare wheel with vehicle jack, wheel brace and toolkit stored under cargo space floor."
},
"JLRCode": "028MB"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-028mb/.jsonp?view=summary"
}
]
}
]
},
{
"name": "OPTIONS_DRIVING_AIDS",
"type": "multi",
"description": {
"en": "Driver Assistance"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "A-086GP-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "3D Surround Camera"
}
},
{
"id": "A-189AG-STD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "360\u00b0 Parking Aid"
}
},
{
"id": "N-065AP",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Adaptive Cruise Control"
},
"property": {
"ExtendedDescription": {
"en": "Adaptive Cruise Control will keep your vehicle a safe distance from the vehicle in front, should it slow or stop when you're cruising or traveling in slow-moving traffic. If the vehicle in front stops, you will come to a smooth halt."
},
"JLRCode": "065AP"
}
},
{
"id": "N-086DC",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Traffic Sign Recognition and Adaptive Speed Limiter"
},
"property": {
"ExtendedDescription": {
"en": "Our Traffic Sign Recognition system keeps you fully informed and aware on the road, by displaying speed limits and no overtaking signs in the instrument cluster where they can easily be seen.\n\nWhen activated, our Adaptive Speed Limiter uses Traffic Sign Recognition information to limit your vehicle's speed accordingly."
}
}
},
{
"id": "N-086BH",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Lane Keep Assist"
},
"property": {
"ExtendedDescription": {
"en": "Detects when the vehicle is unintentionally drifting out of the lane, and applies a corrective torque to the steering wheel, encouraging you to guide your vehicle back."
}
}
},
{
"id": "N-086GM",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Blind Spot Assist"
},
"property": {
"ExtendedDescription": {
"en": "Blind Spot Assist can help you prevent collisions. If your vehicle detects another vehicle in your blind spot when you begin to change lanes, a small warning light illuminates in the corresponding door mirror. Corrective torque is also applied to the steering wheel, encouraging you to guide your vehicle away from the approaching vehicle."
},
"JLRCode": "086GM"
}
},
{
"id": "N-086KD",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Rear Traffic Monitor"
},
"property": {
"ExtendedDescription": {
"en": "Rear Traffic Monitor is particularly useful when reversing out of a parking bay, the system warns you of vehicles, pedestrians or other hazards, approaching from either side of your vehicle. It will alert you with both audible and visual warnings so you know what\u2019s behind you, even when the view is obstructed."
},
"JLRCode": "086KD"
}
},
{
"id": "N-065EE",
"availability": "standard",
"basetake": "y",
"description": {
"en": "Emergency Braking"
},
"property": {
"ExtendedDescription": {
"en": "Emergency Braking can help to prevent collisions with other vehicles, pedestrians or cyclists. If a potential frontal collision is detected, a warning is displayed giving you time to take action. A forward looking camera monitors vehicles ahead at speeds from 3.1-50 mph for frontal collisions, and 3.1-37.3 mph for pedestrians and cyclists. If a collision is still anticipated and you have taken no action, the system will apply the brakes to help reduce the severity of the possible impact."
}
}
}
]
},
{
"name": "OPTIONS_DISPLAY",
"type": "mutex1",
"description": {
"en": "Display"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-038ID",
"availability": "default",
"preferred": "y",
"description": {
"en": "Interactive Driver Display"
},
"property": {
"ExtendedDescription": {
"en": "The 12,3\" high-definition Interactive Driver Display can receive and project a vast amount of driving information, entertainment and active safety data including navigation, phone and media. Its high resolution ensures the utmost clarity and its refined processing engine delivers smooth moving pin-sharp graphics."
},
"Int3D": "350",
"JLRCode": "038ID"
},
"media": [
{
"name": "InImageOption3:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-038id_a-110_a-p300-110_gl_1.jpg?v=4cvlj"
},
{
"name": "InMaskOption3:1",
"purpose": "intkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inoptmask_l663_k26_n-038id_a-110_a-p300-110_gl_1.png?v=4cvlj"
},
{
"name": "InOffsetOption3",
"purpose": "intkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/option/inopt_l663_k26_n-038id_a-110_a-p300-110_gl.json?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-038id/.jsonp?view=summary"
}
]
}
]
},
{
"name": "DRIVER_MONITOR",
"type": "mutex1",
"description": {
"en": "Driver Monitor"
},
"property": {
"Style": "featureBasket"
},
"feature": [
{
"id": "N-086DH",
"availability": "default",
"preferred": "y",
"description": {
"en": "Driver Condition monitor"
},
"property": {
"ExtendedDescription": {
"en": "Stay sharp. Stay safe. The Driver Condition Monitor keeps you alert, detecting fatigue and advising when to take a break."
},
"JLRCode": "086DH"
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-086dh/.jsonp?view=summary"
}
]
}
]
}
]
},
{
"name": "SERVICE_PACKS",
"type": "mutex1",
"description": {
"en": "SERVICE PACKS"
},
"feature": [
{
"id": "N-ELITECARE1",
"availability": "default",
"preferred": "y",
"description": {
"en": "Learn About Online Reservations"
},
"property": {
"ExtendedDescription": {
"en": "This is your opportunity to explore an innovative, effortless journey to reserving your Defender online, with transparent pricing, enhanced inventory search and more, at your convenience.\n\n<b>Create Your Vehicle</b>\nConfigure and customize your ideal Defender model.\n\n<b>Find Your Closest Match at Your Retailer</b>\nSearch your preferred retailer\u2019s inventory from the comfort of your own home.\n\n<b>Select and Reserve</b>\nReserve your selected vehicle with detailed specifications and pricing.\n\nWelcome to a simplified online reservation process."
},
"extendeddescriptionsnippet": {
"en": "This is your opportunity to explore an innovative, effortless journey to reserving your Defender online, with transparent pricing, enhanced inventory search and more, at your convenience.\n\n<b>Create Your Vehicle</b>\nConfigure and customize your ideal Defender model.\n\n<b>Find Your Closest Match at Your Retailer</b>\nSearch your preferred retailer\u2019s inventory from the comfort of your own home.\n\n<b>Select and Reserve</b>\nReserve your selected vehicle with detailed specifications and pricing.\n\nWelcome to a simplified online reservation process."
},
"JLRCode": "Ignore"
},
"media": [
{
"name": "Option",
"purpose": "thumb",
"url": "https://assets.config.landrover.com/lr/l663/k26/options/opt_l663_k26_n-elitecare1_gl_gl_gl.jpg?v=4cvlj"
}
],
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/n-elitecare1/.jsonp?view=summary"
}
]
}
]
}
]
},
{
"name": "ACCESSORIES",
"type": "multi",
"description": {
"en": "Accessories"
},
"property": {
"Accessory": "Y",
"Style": "featureBasket"
},
"feature-list": []
},
{
"name": "CHARGES",
"type": "multi",
"description": {
"en": "CHARGES"
},
"feature-list": [
{
"name": "DELIVERY",
"type": "mutex1",
"description": {
"en": "ADDITIONAL CHARGES"
},
"feature": [
{
"id": "DELIVERYCHARGE",
"availability": "default",
"preferred": "y",
"description": {
"en": "Destination and Delivery"
},
"price": {
"GROSS": {
"currency": "USD",
"value": "1950.00"
},
"NET": {
"currency": "USD",
"value": "1950.00"
}
},
"query": [
{
"type": "with",
"href": "/rc/lr/en_us/l663_k26/4cvlj/a-110/deliverycharge/.jsonp?view=summary"
}
]
}
]
}
]
}
],
"categories": [
{
"name": "CAT_PROMOTIONS",
"description": {
"en": "PROMOTIONS"
},
"categories": [
{
"name": "CAT_PROMO1",
"description": {
"en": "Without Roof Rails"
},
"property": {
"ExtendedDescription": {
"en": "Defender 130 V8 does not support any roof mounted load or accessories. The vehicle is equipped with rails which do not allow cross bars to be fitted"
},
"BackgroundColour": {
"en": "Light"
},
"PromoCopy": {
"en": "Defender 130 V8 does not support any roof mounted load or accessories. The vehicle is equipped with rails which do not allow cross bars to be fitted"
},
"PromoPosition": {
"en": "A-060AE-130.after"
}
}
}
]
}
]
},
"configuration": {
"summary": {
"price": {
"GROSS": {
"currency": "USD",
"value": "65450.00"
},
"NET": {
"currency": "USD",
"value": "65450.00"
}
},
"feature-lists": [
"EXTERIOR",
"EXTERIOR_FEATURES",
"INTERIOR",
"INTERIOR_FEATURES",
"OPTIONS",
"WHEEL_CONFIGURATION",
"ACCESSORIES",
"PRODUCT",
"BODYSTYLE",
"MODEL",
"ENGINE",
"CHARGES"
],
"categories": [
"CAT_PROMOTIONS"
],
"media": [
{
"name": "ExImageShadow:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/shadow/exshad_l663_k26_a-110_a-l663-s_1.png?v=4cvlj"
},
{
"name": "ExImageShadow:2",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/shadow/exshad_l663_k26_a-110_a-l663-s_2.png?v=4cvlj"
},
{
"name": "ExImageShadow:3",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/shadow/exshad_l663_k26_a-110_a-l663-s_3.png?v=4cvlj"
},
{
"name": "ExImageShadow:4",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/shadow/exshad_l663_k26_a-110_a-l663-s_4.png?v=4cvlj"
},
{
"name": "ExImageEngine:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/engine/exeng_l663_k26_a-110_a-p300-110_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskEngine:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/engine/exengmask_l663_k26_a-110_a-p300-110_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetEngine",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/engine/exeng_l663_k26_a-110_a-p300-110_gl.json?v=4cvlj"
},
{
"name": "ExImageWheel:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/wheel/exwhl_l663_k26_a-110_n-031sv_n-030ia_a-p300-110_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskWheel:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/wheel/exwhlmask_l663_k26_a-110_n-031sv_n-030ia_a-p300-110_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetWheel",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/wheel/exwhl_l663_k26_a-110_n-031sv_n-030ia_a-p300-110_gl.json?v=4cvlj"
},
{
"name": "ExImageBase:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/colour/exbse_l663_k26_a-110_a-l663-s_n-1aa_a-gloss_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskBase:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/colour/exbsemask_l663_k26_a-110_a-l663-s_a-gloss_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetBase",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/colour/exbse_l663_k26_a-110_a-l663-s_a-gloss_gl.json?v=4cvlj"
},
{
"name": "ExImageRoof:1",
"purpose": "extkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/roof/exroof_l663_k26_a-110_n-080ac_gl_1.jpg?v=4cvlj"
},
{
"name": "ExMaskRoof:1",
"purpose": "extkfmask",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/roof/exroofmask_l663_k26_a-110_n-080ac_gl_1.png?v=4cvlj"
},
{
"name": "ExOffsetRoof",
"purpose": "extkfoffset",
"url": "https://assets.config.landrover.com/lr/l663/k26/exkf/roof/exroof_l663_k26_a-110_n-080ac_gl.json?v=4cvlj"
},
{
"name": "InImageBase:1",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/base/inbse_l663_k26_a-110_a-l663-s_n-304ne_a-5seats_a-p300-110_n-047ax_gl_1.jpg?v=4cvlj"
},
{
"name": "InImageBase:2",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/base/inbse_l663_k26_a-110_a-l663-s_n-304ne_a-5seats_a-p300-110_n-047ax_gl_2.jpg?v=4cvlj"
},
{
"name": "InImageBase:3",
"purpose": "intkf cad",
"url": "https://assets.config.landrover.com/lr/l663/k26/inkf/base/inbse_l663_k26_a-110_a-l663-s_n-304ne_a-5seats_a-p300-110_n-047ax_gl_3.jpg?v=4cvlj"
},
{
"name": "NewsletterImageEx",
"url": "https://imagegen.config.landrover.com/ciw/img?z=eAGVlU1zmzAQhn-NucEIg3EvHJQ6ttOmTZo2ybQXjYxlsK0gBlHjya_vSgibTg9dZvjQ2LOP9t13tUiSFk1T6UlEJ9MlXFxr0eggU-VunweSl9tanUQNP7zBv7I2jySJ4HWcJvAU5-POvvKab9mKrZlueLPPgkOVT6LlaRIt4uwkD54MSer2uAk-BovgFsLMjiu413Dfwa0LvlUtLMTZLC2P-2FIGPfNtr5mYVCV_5AR6ExJ9dukL84bLSz5gT2y0g85B3ouldYsl-xbcO_xkCCI33vYG9fHC_CFvQLjycvQjB_D2OCgVfl34aaYZESZ70thM4KlI3K_igix9TNJgTAU61ePGQijN70uNIJSl4aJDX56MpohqqqqZg8VMD7B0hJKn8Tz7YY9gE8zLXijwTgnCMWki553UUSXgKMrBwK78CB6a7MaEKy4-ez__e0S2WRDaWH2Drk8QyuSD4RnF2VjgVdtn4y2z71hERpE7zplfbzRFWO6ry2EkLbGbSGd6yAnCvXJyIrInjPXQdCEKCT90vMuukAUXI89CUzDk-hXl9YVYdXNpkjXnOvcr8VOiqxR9bCBjCo8at2V-WlIMGrwBNeCV4IRM8NYVSvVDWyz6GvS9QqIQCFoN_kMYOjNpeHwENrPPtOtRkKCGRH2FDk_oLsSwluopBsIIwjOhhcXDA6MCHYO2GCT-Zxgz787ZZB5POdn2Pz5Os5GUO67JnoFQDcNIf8R4e6ou3BQ0KbzKPGKNA5jb5cST6XwCf8D3jEtwA~~"
}
]
},
"standard-features": {
"feature-lists": [
"EXTERIOR",
"EXTERIOR_FEATURES",
"INTERIOR",
"INTERIOR_FEATURES",
"OPTIONS"
]
}
},
"specs": [
{
"id": ":SECTION_1",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"table": [
{
"id": ":TABLE_1",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "PERFORMANCE"
}
},
"label": [
{
"description": {
"en": "Top speed (mph)"
}
},
{
"description": {
"en": "Acceleration 0-60 mph (secs)"
}
}
]
},
"datasets": [
{
"refs": "A-P300-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "119&lt;sup&gt;4,9\u2021&lt;/sup&gt;"
}
},
{
"description": {
"en": "7.0&lt;sup&gt;4&lt;/sup&gt;"
}
}
]
}
]
},
{
"id": ":TABLE_2",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "EPA-ESTIMATED FUEL ECONOMY"
}
},
"label": [
{
"description": {
"en": "City (mpg)"
}
},
{
"description": {
"en": "Highway (mpg)"
}
},
{
"description": {
"en": "Combined (mpg)"
}
},
{
"description": {
"en": "Fuel tank capacity - usable (gallons)"
}
}
]
},
"datasets": [
{
"refs": "A-P300-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "TBC&lt;sup&gt;5&lt;/sup&gt;"
}
},
{
"description": {
"en": "TBC&lt;sup&gt;5&lt;/sup&gt;"
}
},
{
"description": {
"en": "TBC&lt;sup&gt;5&lt;/sup&gt;"
}
},
{
"description": {
"en": "23.8"
}
}
]
}
]
},
{
"id": ":TABLE_3",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "POWERTRAIN"
}
},
"label": [
{
"description": {
"en": "Maximum power (hp/rpm)"
}
},
{
"description": {
"en": "Maximum torque (lb-ft/rpm)"
}
},
{
"description": {
"en": "Transmission"
}
},
{
"description": {
"en": "Capacity (cc)"
}
}
]
},
"datasets": [
{
"refs": "A-P300-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "296 / 5,500"
}
},
{
"description": {
"en": "295 / 1,500 - 4,500"
}
},
{
"description": {
"en": "Automatic"
}
},
{
"description": {
"en": "1,997"
}
}
]
}
]
},
{
"id": ":TABLE_4",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "WEIGHTS"
}
},
"label": [
{
"description": {
"en": "Curb weight from (lbs)"
}
},
{
"description": {
"en": "Gross vehicle weight from (lbs)"
}
}
]
},
"datasets": [
{
"refs": "A-P300-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "4,830 (5 seats) / 4,985 (5+2 seats)"
}
},
{
"description": {
"en": "6,845 (5 seats) / 7,050 (5+2 seats)"
}
}
]
}
]
},
{
"id": ":TABLE_5",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "TOWING"
}
},
"label": [
{
"description": {
"en": "Unbraked trailer (lbs)"
}
},
{
"description": {
"en": "Maximum towing (lbs)"
}
},
{
"description": {
"en": "Maximum coupling point (nose weight) (lbs)"
}
},
{
"description": {
"en": "Maximum vehicle and trailer combination (GTW) (lbs)"
}
}
]
},
"datasets": [
{
"refs": "A-P300-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "1,653&lt;sup&gt;27&lt;/sup&gt;"
}
},
{
"description": {
"en": "7,715&lt;sup&gt;27&lt;/sup&gt;"
}
},
{
"description": {
"en": "771&lt;sup&gt;27,\u2021\u2021&lt;/sup&gt;"
}
},
{
"description": {
"en": "14,560 (5 seats) / 14,770 (5+2 seats)&lt;sup&gt;27&lt;/sup&gt;"
}
}
]
}
]
},
{
"id": ":TABLE_6",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "ROOF CARRYING"
}
},
"label": [
{
"description": {
"en": "Maximum roof load (including cross bars) (lbs)"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "220.0 (All-season Tires) / 370 (All-Terrain Tires)\u25c7"
}
}
]
}
]
},
{
"id": ":TABLE_7",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "DIMENSIONS"
}
},
"label": [
{
"description": {
"en": "Height (in)"
}
},
{
"description": {
"en": "Length (in)"
}
},
{
"description": {
"en": "Width with mirrors folded (in)"
}
},
{
"description": {
"en": "Width with mirrors out (in)"
}
},
{
"description": {
"en": "Front wheel track (in)"
}
},
{
"description": {
"en": "Rear wheel track (in)"
}
},
{
"description": {
"en": "Wheelbase (in)"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "77.4"
}
},
{
"description": {
"en": "187.3 (Without spare wheel) | 197.5 (With spare wheel)"
}
},
{
"description": {
"en": "79.1"
}
},
{
"description": {
"en": "82.9"
}
},
{
"description": {
"en": "67.0"
}
},
{
"description": {
"en": "66.9"
}
},
{
"description": {
"en": "119.0"
}
}
]
}
]
},
{
"id": ":TABLE_8",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "HEADROOM"
}
},
"label": [
{
"description": {
"en": "Maximum front/rear headroom with standard roof (in)"
}
},
{
"description": {
"en": "Maximum front/rear headroom with panoramic roof (in)"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "40.6 / 40.4"
}
},
{
"description": {
"en": "40.7 / 40.4"
}
}
]
}
]
},
{
"id": ":TABLE_9",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "LEGROOM"
}
},
"label": [
{
"description": {
"en": "Maximum front/rear legroom (in)"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "39.1 (5 seats) / 38.4 (5+2 seats)"
}
}
]
}
]
},
{
"id": ":TABLE_10",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "CARGO CAPACITY"
}
},
"label": [
{
"description": {
"en": "Height (in)"
}
},
{
"description": {
"en": "Width (in)"
}
},
{
"description": {
"en": "Width between arches (in)"
}
},
{
"description": {
"en": "Length behind first row (in)"
}
},
{
"description": {
"en": "Volume behind first row (cu. ft.)"
}
},
{
"description": {
"en": "Length behind second row (in)"
}
},
{
"description": {
"en": "Volume behind second row (cu. ft.)"
}
},
{
"description": {
"en": "Length behind third row (in)"
}
},
{
"description": {
"en": "Volume behind third row (cu. ft.)"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "35.6"
}
},
{
"description": {
"en": "47.7 (5 seats) / 46.8 (5+2 seats)"
}
},
{
"description": {
"en": "45.7"
}
},
{
"description": {
"en": "69.4 (5 seats) / 70.40 (5+2 seats)"
}
},
{
"description": {
"en": "78.8 (5 seats) / 69.0 (5+2 seats)"
}
},
{
"description": {
"en": "36.2 (5 seats) / 35.4 (5+2 seats)"
}
},
{
"description": {
"en": "34.0 (5 seats) / 34.6 (5+2 seats)"
}
},
{
"description": {
"en": "11.4"
}
},
{
"description": {
"en": "10.7"
}
}
]
}
]
},
{
"id": ":TABLE_11",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "GROUND CLEARANCE - STANDARD"
}
},
"label": [
{
"description": {
"en": "Ride height (in)"
}
},
{
"description": {
"en": "Approach Angle"
}
},
{
"description": {
"en": "Departure Angle"
}
},
{
"description": {
"en": "Ramp Angle"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "9.0 (Coil Suspension) / 8.5 (Air Suspension)"
}
},
{
"description": {
"en": "31.2\u00b0 (Coil Suspension) / 30.1\u00b0 (Air Suspension)"
}
},
{
"description": {
"en": "37.8\u00b0 (Coil Suspession) / 37.7\u00b0 (Air Suspension)"
}
},
{
"description": {
"en": "22.6\u00b0 (Coil Suspession) / 22.0\u00b0 (Air Suspension)"
}
}
]
}
]
},
{
"id": ":TABLE_12",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "GROUND CLEARANCE - OFF ROAD"
}
},
"label": [
{
"description": {
"en": "Ride height (in)"
}
},
{
"description": {
"en": "Approach Angle"
}
},
{
"description": {
"en": "Departure Angle"
}
},
{
"description": {
"en": "Ramp Angle"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "8.9 (Coil Suspension) / 11.5 (Air Suspension)"
}
},
{
"description": {
"en": "32.0\u00b0 (Coil Suspension) / 37.6\u00b0\u25bd (Air Suspension)"
}
},
{
"description": {
"en": "37.7\u00b0 (Coil Suspession) / 41.9\u00b0\u25bd (Air Suspension)"
}
},
{
"description": {
"en": "22.2\u00b0 (Coil Suspession) / 27.9\u00b0 (Air Suspension)"
}
}
]
}
]
},
{
"id": ":TABLE_13",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "WADING DEPTH"
}
},
"label": [
{
"description": {
"en": "Maximum wading depth (in)"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "35.4&lt;sup&gt;22&lt;/sup&gt;"
}
}
]
}
]
},
{
"id": ":TABLE_14",
"description": {
"en": "PERFORMANCE AND WEIGHT"
},
"labels": {
"heading": {
"description": {
"en": "TURNING CIRCLE"
}
},
"label": [
{
"description": {
"en": "Curb-to-curb (ft)"
}
},
{
"description": {
"en": "Wall-to-wall (ft)"
}
},
{
"description": {
"en": "Turns lock-to-lock (no. of turns)"
}
}
]
},
"datasets": [
{
"refs": "A-110",
"heading": {
"description": ""
},
"data": [
{
"description": {
"en": "42.1"
}
},
{
"description": {
"en": "42.9"
}
},
{
"description": {
"en": "2.7"
}
}
]
}
]
}
]
}
],
"_nameplate": "l663",
"_body_style": "a-110",
"_brand": "Defender"
}

Entities — both extracted from the JLR configurator (asset jlr/us/raw/configurator_configurator):

  • models (key: model_code from PRODUCT feature id) → jlr/us/transformed/configurator_models, which also carries model_name_key, model_name, trim, model_year (int), programme_code, and body_style.
  • features (key: feature_code + programme_code + body_style) → jlr/us/transformed/configurator_features.

3. National Inventory — NetDirector GraphQL API

JLR's national inventory site (inventory.landroverusa.com) is backed by the NetDirector GraphQL API, which aggregates all US Land Rover dealer inventory into a single paginated endpoint — no per-dealer credentials required.

URL: POST https://production-api-oregon.search-api.netdirector.auto/api/vehicle-search?uuid=129ab960-5b4e-11ed-bb64-ed0ed6312d26

Auth: static authorization: 509af530-5b4f-11ed-8b57-55280799ffff header. Origin/Referer must be set to https://inventory.landroverusa.com.

Query: GraphQL getAll with condition filter ("new" or "used"), page size up to 1000. The getCount query returns the total vehicle count for pagination planning.

query {
getCount(searchParams: {condition: "new"})
getAll(
searchParams: {condition: "new"},
pagination: {currentPage: 1, pageSize: 5000},
sortParams: [{fieldName: currentPrice, direction: asc}]
) {
id vin registration { number } createdAt manufacturer
model modelCode modelYear variant condition bodyStyle
engine { description } fuel { type } transmission { type }
colour { exterior interior } odometer { value unit }
price { current list currencyCode }
equipment { category fitted label }
location { name details { address { city county line1 } } }
identifiers { dealerId }
externalUrl status
}
}

Coverage: ~27k new vehicles + ~6k used/CPO vehicles across all US dealers. The identifiers.dealerId field carries the JLR dealer ciCode (e.g. R0234) directly — no per-dealer scraping or ccid mapping needed. Do not filter by manufacturer — approximately 40% of Land Rover vehicles have a null manufacturer field and would be silently dropped.

Equipment/features: equipment[] contains all vehicle options with category, fitted (boolean — whether this option is on the specific vehicle), and label (display name). Available in both list and single-vehicle queries.

Sample response (3 new vehicles)
jlr_netdirector_sample.json
{
"data": {
"getAll": [
{
"id": "632469",
"vin": "SALCJ2FXXPH914478",
"registration": {
"date": "2023-01-01",
"year": 2023,
"number": "3SLL3015",
"plate": "2023"
},
"manufacturer": "LAND ROVER",
"model": "Discovery Sport",
"modelCode": "HQ550",
"modelYear": 2023,
"productionYear": 2023,
"trim": null,
"variant": "S",
"condition": "New",
"bodyStyle": "SUV",
"type": "Car",
"numDoors": 5,
"numSeats": 5,
"numOwners": 4,
"status": "available",
"isFeatured": false,
"isExDemo": false,
"isFranchiseApproved": false,
"isSharedStock": false,
"isVirtual": false,
"isAgency": false,
"driveType": null,
"upholstery": null,
"interiorDescription": null,
"shippingStatus": null,
"entryType": "Vehicle",
"groupName": "Land Rover Austin",
"externalUrl": "https://www.landroveraustin.com/inventory/2023-land-rover-discovery-sport-s-4wd-suv-salcj2fxxph914478/",
"detailPageUrl": "https://inventory.landroverusa.com/new/search/#/632469-LAND%20ROVER-DISCOVERY%20SPORT-S",
"engine": {
"description": "2.0L",
"engineType": null,
"engineConcept": null,
"size": null,
"sizeCc": null,
"numCylinders": 4,
"cylinderConfiguration": null,
"alignment": null
},
"fuel": {
"type": "Gasoline",
"typeEnglish": "Gasoline",
"delivery": null,
"tankCapacity": null,
"secondaryFuelType": null
},
"transmission": {
"type": "Automatic",
"generic": null,
"numGears": null,
"description": null
},
"colour": {
"exterior": "Portofino Blue",
"interior": "Light Oyster DuoLeather",
"exteriorCode": "1DG",
"exteriorGeneric": "blue",
"exteriorRoof": null,
"interiorGeneric": null
},
"odometer": {
"value": 0,
"unit": "miles"
},
"price": {
"current": 48945,
"base": null,
"net": null,
"previous": 97890,
"list": 48945,
"currencyCode": "USD",
"msrpFull": 48945,
"usd": null
},
"power": {
"maxHp": 246,
"maxKw": 183,
"maxPs": 249
},
"equipment": [
{
"label": "Bluetooth, USB Ports",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Auto-Dim Interior Rear View Mirror, HomeLink",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Keyless Entry, Push Button Start",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "LED Headlights",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Apple CarPlay, Android Auto",
"fitted": true,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Rear Privacy Glass, Heated Rear Window",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Rain Sensing Front Wipers, Rear Wiper",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Carpet Mats",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Land Rover Enhanced Sound System",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Powered Tailgate",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Ambient Interior Lighting",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "All Terrain Progress Control, Hill Descent Control",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "246 Horsepower, 269 lb-ft Torque",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "All Wheel Drive",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "Electric Power Assisted Steering",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "9-Speed Automatic Transmission",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "Blind Spot Assist Pack",
"fitted": true,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Remote - Emergency Collision Notification, Stolen Vehicle Locator, Remote Start",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Tire Pressure Monitoring System, ISOFIX System for Child Seats, Child Locks",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Rear View Camera, Front and Rear Parking Aids",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Emergency Braking, Anti-Lock Braking System, Emergency Brake Assist",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Electronic Traction Control, Dynamic Stability Control",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Traffic Sign Recognition and Adaptive Speed Limiter",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Lane Keep Assist and Driver Condition Monitor",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Handover Pack",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Cold Climate Pack",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Portofino Blue Paint",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Leather Steering Wheel",
"fitted": false,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Premium Rear Seat Convenience Pack",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Automatic High Beam Assist",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Meridian Sound System",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Fixed Panoramic Roof",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
}
],
"features": null,
"location": {
"id": "7938",
"name": "Land Rover Austin",
"country": null,
"region": null,
"town": null,
"postcode": null,
"street": null,
"manufacturerDealerNumber": "R0234",
"hash": "c6bf8abb1f8bc4f6e3ec688b6603de388217964e"
},
"identifiers": {
"dealerId": "R0234",
"stockId": "632469",
"internalId": null
},
"emission": null,
"range": null,
"battery": null,
"electricAttributes": null,
"efficiency": {
"combinedMpg": null,
"motorwayMpg": 23,
"urbanMpg": null,
"combinedLp100km": null,
"motorwayLp100km": 12.28,
"urbanLp100km": null
},
"dimensions": null,
"availability": null,
"dealer": null,
"warranty": null,
"ncap": null,
"weight": null,
"performance": null
},
{
"id": "721313",
"vin": "SALCJ2FX5PH324639",
"registration": {
"date": "2023-01-01",
"year": 2023,
"number": "3SLL3265",
"plate": "2023"
},
"manufacturer": "LAND ROVER",
"model": "Discovery Sport",
"modelCode": "HQ550",
"modelYear": 2023,
"productionYear": 2023,
"trim": null,
"variant": "S",
"condition": "New",
"bodyStyle": "SUV",
"type": "Car",
"numDoors": 5,
"numSeats": 5,
"numOwners": 4,
"status": "available",
"isFeatured": false,
"isExDemo": false,
"isFranchiseApproved": false,
"isSharedStock": false,
"isVirtual": false,
"isAgency": false,
"driveType": null,
"upholstery": null,
"interiorDescription": null,
"shippingStatus": null,
"entryType": "Vehicle",
"groupName": "Land Rover Austin",
"externalUrl": "https://www.landroveraustin.com/inventory/2023-land-rover-discovery-sport-s-4wd-suv-salcj2fx5ph324639/",
"detailPageUrl": "https://inventory.landroverusa.com/new/search/#/721313-LAND%20ROVER-DISCOVERY%20SPORT-S",
"engine": {
"description": "2.0L",
"engineType": null,
"engineConcept": null,
"size": null,
"sizeCc": null,
"numCylinders": 4,
"cylinderConfiguration": null,
"alignment": null
},
"fuel": {
"type": "Gasoline",
"typeEnglish": "Gasoline",
"delivery": null,
"tankCapacity": null,
"secondaryFuelType": null
},
"transmission": {
"type": "Automatic",
"generic": null,
"numGears": null,
"description": null
},
"colour": {
"exterior": "Portofino Blue",
"interior": "Acorn DuoLeather",
"exteriorCode": "1DG",
"exteriorGeneric": "blue",
"exteriorRoof": null,
"interiorGeneric": null
},
"odometer": {
"value": 10500,
"unit": "miles"
},
"price": {
"current": 49160,
"base": null,
"net": null,
"previous": 98320,
"list": 49160,
"currencyCode": "USD",
"msrpFull": 49160,
"usd": null
},
"power": {
"maxHp": 246,
"maxKw": 183,
"maxPs": 249
},
"equipment": [
{
"label": "Bluetooth, USB Ports",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Auto-Dim Interior Rear View Mirror, HomeLink",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Keyless Entry, Push Button Start",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "LED Headlights",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Apple CarPlay, Android Auto",
"fitted": true,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Rear Privacy Glass, Heated Rear Window",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Rain Sensing Front Wipers, Rear Wiper",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Carpet Mats",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Land Rover Enhanced Sound System",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Powered Tailgate",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Ambient Interior Lighting",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "246 Horsepower, 269 lb-ft Torque",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "All Terrain Progress Control, Hill Descent Control",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "All Wheel Drive",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "Electric Power Assisted Steering",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "9-Speed Automatic Transmission",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "Rear View Camera, Front and Rear Parking Aids",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Blind Spot Assist Pack",
"fitted": true,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Remote - Emergency Collision Notification, Stolen Vehicle Locator, Remote Start",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Tire Pressure Monitoring System, ISOFIX System for Child Seats, Child Locks",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Emergency Braking, Anti-Lock Braking System, Emergency Brake Assist",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Electronic Traction Control, Dynamic Stability Control",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Traffic Sign Recognition and Adaptive Speed Limiter",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Lane Keep Assist and Driver Condition Monitor",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Handover Pack",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Emergency Pack",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Portofino Blue Paint",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Leather Steering Wheel",
"fitted": false,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Basic Rear Seat Convenience Pack",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Fixed Panoramic Roof",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
}
],
"features": null,
"location": {
"id": "7938",
"name": "Land Rover Austin",
"country": null,
"region": null,
"town": null,
"postcode": null,
"street": null,
"manufacturerDealerNumber": "R0234",
"hash": "c6bf8abb1f8bc4f6e3ec688b6603de388217964e"
},
"identifiers": {
"dealerId": "R0234",
"stockId": "721313",
"internalId": null
},
"emission": null,
"range": null,
"battery": null,
"electricAttributes": null,
"efficiency": {
"combinedMpg": null,
"motorwayMpg": 23,
"urbanMpg": null,
"combinedLp100km": null,
"motorwayLp100km": 12.28,
"urbanLp100km": null
},
"dimensions": null,
"availability": null,
"dealer": null,
"warranty": null,
"ncap": null,
"weight": null,
"performance": null
},
{
"id": "1287527",
"vin": "SALCT2FXXMH889197",
"registration": {
"date": "2021-01-01",
"year": 2021,
"number": "SL21208",
"plate": "2021"
},
"manufacturer": "LAND ROVER",
"model": "Discovery Sport",
"modelCode": "HQ550",
"modelYear": 2021,
"productionYear": 2021,
"trim": null,
"variant": "R-Dynamic S",
"condition": "New",
"bodyStyle": "4 Door",
"type": "Car",
"numDoors": 4,
"numSeats": 5,
"numOwners": 4,
"status": "available",
"isFeatured": false,
"isExDemo": false,
"isFranchiseApproved": false,
"isSharedStock": false,
"isVirtual": false,
"isAgency": false,
"driveType": null,
"upholstery": null,
"interiorDescription": null,
"shippingStatus": null,
"entryType": "Vehicle",
"groupName": "Land Rover Austin",
"externalUrl": "https://www.landroveraustin.com/inventory/2021-land-rover-discovery-sport-s-r-dynamic-4wd-4-door-salct2fxxmh889197/",
"detailPageUrl": "https://inventory.landroverusa.com/new/search/#/1287527-LAND%20ROVER-DISCOVERY%20SPORT-R-Dynamic%20S",
"engine": {
"description": "2.0L",
"engineType": null,
"engineConcept": null,
"size": null,
"sizeCc": null,
"numCylinders": 4,
"cylinderConfiguration": null,
"alignment": null
},
"fuel": {
"type": "Gasoline",
"typeEnglish": "Gasoline",
"delivery": null,
"tankCapacity": null,
"secondaryFuelType": null
},
"transmission": {
"type": "Automatic",
"generic": null,
"numGears": null,
"description": null
},
"colour": {
"exterior": "Byron Blue",
"interior": "Light Oyster",
"exteriorCode": "1CK",
"exteriorGeneric": "blue",
"exteriorRoof": null,
"interiorGeneric": null
},
"odometer": {
"value": 0,
"unit": "miles"
},
"price": {
"current": 49910,
"base": null,
"net": null,
"previous": 99820,
"list": 49910,
"currencyCode": "USD",
"msrpFull": 49910,
"usd": null
},
"power": {
"maxHp": 246,
"maxKw": 183,
"maxPs": 249
},
"equipment": [
{
"label": "Push Button Start",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Carpet Mats, Metal Treadplates",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Bluetooth, USB Ports",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Auto-Dim Interior Rear View Mirror, HomeLink",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "LED Headlights",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Apple CarPlay, Android Auto",
"fitted": true,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Rear Privacy Glass, Heated Rear Window",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Rain Sensing Front Wipers, Rear Wiper",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Land Rover Enhanced Sound System",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Keyless Entry",
"fitted": true,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Grained Leather Seats",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Ambient Interior Lighting",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "Cruise Control",
"fitted": false,
"highlighted": false,
"category": "Driver Convenience",
"code": null,
"description": null
},
{
"label": "246 Horsepower, 269 lb-ft Torque",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "All Terrain Progress Control, Hill Descent Control",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "All Wheel Drive",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "Electric Power Assisted Steering",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "9-Speed Automatic Transmission",
"fitted": false,
"highlighted": false,
"category": "Exterior",
"code": null,
"description": null
},
{
"label": "Emergency Braking, Anti-Lock Braking System, Emergency Brake Assist",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Remote - Emergency Collision Notification, Stolen Vehicle Locator, Remote Start",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Tire Pressure Monitoring System, ISOFIX System for Child Seats, Child Locks",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Electronic Traction Control, Dynamic Stability Control",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Traffic Sign Recognition and Adaptive Speed Limiter",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "Lane Keep Assist and Driver Condition Monitor",
"fitted": false,
"highlighted": false,
"category": "Safety",
"code": null,
"description": null
},
{
"label": "12-Way Heated Electric Front Seats",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Powered Tailgate/Boot Lid",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Leather Steering Wheel",
"fitted": false,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Driver Assist Pack",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Byron Blue Paint",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
},
{
"label": "Fixed Panoramic Roof",
"fitted": true,
"highlighted": false,
"category": "Other",
"code": null,
"description": null
}
],
"features": null,
"location": {
"id": "7938",
"name": "Land Rover Austin",
"country": null,
"region": null,
"town": null,
"postcode": null,
"street": null,
"manufacturerDealerNumber": "R0234",
"hash": "c6bf8abb1f8bc4f6e3ec688b6603de388217964e"
},
"identifiers": {
"dealerId": "R0234",
"stockId": "1287527",
"internalId": null
},
"emission": null,
"range": null,
"battery": null,
"electricAttributes": null,
"efficiency": {
"combinedMpg": null,
"motorwayMpg": 23,
"urbanMpg": null,
"combinedLp100km": null,
"motorwayLp100km": 12.28,
"urbanLp100km": null
},
"dimensions": null,
"availability": null,
"dealer": null,
"warranty": null,
"ncap": null,
"weight": null,
"performance": null
}
]
}
}

Entities — both extracted from the same endpoint (assets jlr/us/raw/netdirector_new_vehicles and jlr/us/raw/netdirector_used_vehicles):

  • inventory (key: vin) → merged into jlr/us/transformed/netdirector_inventory, which carries dealer_code, model_name_key, model_name, trim, model_year (int), manufacturer_model_code, features, vdp_url, and standard vehicle attributes.

Endpoints — Discovered but Not Ingested

Cars Commerce / DealerInspire Search API

URL: POST https://websites-search.api.carscommerce.inc/api/v1/listings/{ccid}/search

Auth: Per-dealer x-api-key header scraped from the dealer's inventory page HTML. Origin/Referer must be set to the dealer's site domain.

Bot protection: Cloudflare. Requires curl_cffi TLS impersonation (impersonate=chrome) to retrieve the dealer inventory page. Approximately 42% of Land Rover dealers are behind Akamai that rejects even real Chrome traffic.

Request: JSON body with required sort, facets, filters, and requestedFields arrays. sort/facets absent → 400. factory_codes in requestedFields → 400. Pagination via page (1-based); perPage=20 max (verified).

Response: data.total_vehicle_count + data.listings[] with vin, year, make, model, trim, manufacturer_model_code, pricing.price/msrp, dealer.location, mechanical, styles.

This source was the original inventory implementation. Superseded (2026-06-23) by the NetDirector national GraphQL API which covers all US dealers without per-dealer scraping or bot-bypass infrastructure.

SFCC Shopper Products API

URL: https://reserve.landrover.com/mobify/proxy/api/product/shopper-products/v1/organizations/f_ecom_bjkk_prd/...

Auth: SFCC SLAS Bearer token (OAuth2 guest flow, client_id 3607a78a-0749-4c3f-9f9a-cdc7123dba7e).

Returns vehicle product details (id, name, brand, c_gvc_body_style, c_gvc_model_year, c_gvc_trim_level, c_gvc_programme_code, c_gvc_virtual_vin, c_gvc_sales_status). Potentially useful for a reservation-catalog-based inventory source, but the JLR configurator provides richer model/feature data without requiring OAuth, and the SFCC product catalog does not represent on-lot dealer inventory.

MuleSoft / Omni Vehicle Matching

URL: GET https://reserve.landrover.com/getMuleSoftData

Powers the "View Inventory Matches" flow in the configurator. Requires a session, retailer selection, and configuration state. Was returning HTTP 503 ("Omni services are currently unavailable") at discovery time. Not usable for bulk inventory.

Finance Calculator API

URL: GET https://financecalculator.landrover.com/api/en/us/finance-available

Returns finance terms and payment estimates for a configured vehicle. Not an inventory or catalog endpoint.

Known Nameplate Codes

CodeBrandModelBody Styles
l663 / L663DefenderDefendera-90, a-110, a-130
l460 / L460Range RoverRange Rovera-swb, a-lwb
l461 / L461Range RoverRange Rover Sporta
l560 / L560Range RoverRange Rover Velara
l551 / L551Range RoverRange Rover Evoquea
l550 / L550DiscoveryDiscoverya
l462 / L462DiscoveryDiscovery Sporta

Model year codes: k26 = 2026MY, k25 = 2025MY. JLR market code for US: 800UD.

Coverage Strategy

  • Dealers: Multi-zip sweep across 20 US metro area zip codes with 500-mile radius. Dealers are deduplicated by ciCode during the fetch. The brand=Land Rover parameter is used; a separate pass for brand=Jaguar could be added if Jaguar dealers differ.

  • Models: All 7 nameplates x their body styles are iterated via the SCS configurator. Each config response contains PRODUCT entries representing trim/engine combinations with MSRP.

  • Features: Extracted from the same configurator responses as models, from all non-PRODUCT categories (exterior colors, interior materials, wheels, options, accessories). Each feature includes pricing and description.

  • Inventory: the NetDirector GraphQL API is queried once per dealer using locationManufacturerDealerNumber (the JLR ciCode). The dealer list comes from the retailer locator raw asset. No per-dealer page scraping or bot-bypass infrastructure is required. Coverage: ~27k new + ~6k used/CPO vehicles across all ~181 US dealers.

Cross-Source Field Alignment

Source AFieldExampleSource BField
SFCC Productsc_gvc_programme_codeL663SCS Configvehicle.id
SFCC Productsid (Code5000)5002296833SCS Configproperty.5000Code
Retailer LocatorciCodeR0627NetDirectoridentifiers.dealerId (direct)
SCS Configvehicle.property.JLRProgrammeCodeL663SCS Confignameplate URL segment

Data Relationships

  • Features → models: share (programme_code, body_style) from the SCS configurator — resolves at 100%.
  • Inventory → dealers: identifiers.dealerId in every NetDirector vehicle row carries the JLR ciCode directly (e.g. R0234) — resolves at 100% with no per-dealer mapping step.
  • Inventory → models: NetDirector modelCode (e.g. DEFENDER_110) shares no token with SCS 5000Code/DerivativePackCode/programme_code. The only join is a fuzzy normalized match on (model_name_key, model_year), which resolves at ~95%. The unmatched ~5% are genuine catalog gaps (MY2021–2025 inventory vs. MY2026-only SCS catalog).

Environment Variables

VariablePurposeDefault
JLR_INVENTORY_WORKERSParallel worker count for NetDirector per-dealer fan-out8