The Inventory Search API offers near real-time access to active dealer inventories in the UK market, updated daily. With advanced filtering, sorting, and analytics features, it enables dealers, lenders, and analysts to efficiently explore current stock and extract valuable market insights.
Units & Conventions:
Field / Pattern | Unit | Notes |
---|---|---|
price, msrp | GBP | Applies to all price-like currency fields |
miles, radius, dist | Miles | Applies to request as well as response |
*_at | Unix epoch seconds (UTC) | Applies to all timestamp fields (e.g. last_seen_at ) |
*_at_date | ISO-8601 YYYY-MM-DDThh:mm:ssZ (UTC) | Same instant as the matching *_at field |
city_mpg, highway_mpg, combined_mpg | Miles per Gallon | UK fuel efficiency measurements |
GET https://api.marketcheck.com/v2/search/car/uk/active
The following example demonstrates a basic search request with common parameters:
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
year: '2022',
make: 'ford',
model: 'puma',
start: '0',
rows: '5',
facets: 'variant',
stats: 'price'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Explore the full range of parameters available for filtering, sorting, and configuring search results in the Parameters section below.
The Inventory Search API provides extensive filtering and search capabilities for UK automotive inventory listings. You can search by vehicle specifications, geographic location, pricing ranges, dealer types, and numerous other criteria to find the exact vehicles you need.
Available parameters for filtering, sorting, and configuring search results:
Your MarketCheck API authentication key. Required for every request, unless OAuth is used.
If true
, the response URLs (such as cached images & relevant links) include the api_key
query parameter along with value; if false
, they do not. Default — false
.
The base exterior color to filter results by (e.g. White, Black, Blue, Silver, Red). Accepts multiple colors as a comma-separated list.
Alias for base_ext_color
. Filters by base exterior color (comma-separated list).
The base interior color to filter results by (e.g. Black, Brown, Beige, Red). Accepts multiple colors as a comma-separated list.
Alias for base_int_color
. Filters by base interior color (comma-separated list).
Filters listings by body type (e.g., SUV, Pickup, Sedan, Hatchback, Convertible). Accepts multiple values separated by commas.
City of the car location. Used for filtering by specific car location city.
County of the car location. Used for filtering by specific car location county.
Latitude of the car location (decimal degrees). Used for geospatial queries of car location.
Longitude of the car location (decimal degrees). Used for geospatial queries of car location.
Seller name at car location. Used for filtering by specific seller name at car location.
Street address of the car location. Used for filtering by specific car location street address.
Postal code of the car location. Used for filtering by specific car location postal code.
Filters listings by city name (e.g. London
, Derby
, Birmingham
).
Filters listings by city fuel-economy mileage. Specify as min-max
MPG (e.g., 20-35
).
Filters listings by CO2 emissions rating in g/km. Specify as a single value or min-max
range (e.g., 0-120
).
Filters listings by combined fuel-economy mileage. Specify as min-max
MPG (e.g., 40-65
).
Filters listings by UK country code. Allowed values - uk
, england
, scotland
, wales
, northern_ireland
.
Filters listings by county name (e.g. Greater London
, Lancashire
). Use instead of state
. Accepts multiple counties as comma-separated values.
Filters listings by engine cylinder count (e.g., 4
, 6
, 8
). Accepts multiple values as a comma-separated list.
Filters listings by MarketCheck dealer ID.
Filters dealers by type. Allowed values — franchise
, independent
.
If true
, returns only is_searchable
listings irrespective of dealer_id
, mc_website_id
, or source
. Default — false. See nodedup
for the opposite behavior.
Filters listings by active Days on Market (DOM). Specify as min-max
days.
Filters listings by total Days on Market (DOM). Specify as min-max
days.
Filters listings by number of doors (e.g., 2
, 4
). Accepts multiple values as comma-separated list.
Filters listings by active Days on Site (DOS). Specify as min-max
days.
Filters listings by drivetrain (FWD
, RWD
, 4WD
). Accepts multiple values separated by commas.
Filters listings by engine designation (e.g., 2.0L I4
, 3.5L V6
, 2.5L H4
). Accepts multiple values as comma-separated list.
Filters listings by engine displacement size (e.g., 2.0
, 2.5
, 3.5
). Accepts multiple values separated by commas.
Filters listings by engine displacement size. Specify as min-max
liters (e.g., 1.5-3.0
).
Filters electric vehicles by battery capacity. Specify as min-max
kWh (e.g., 40-100
).
Filters electric vehicles by battery type (e.g., Lithium-ion
, Nickel-metal hydride
). Accepts multiple values as comma-separated list.
Filters electric vehicles by driving range. Specify as a single value or min-max
miles (e.g., 200-400
).
Excludes results from the specified dealer IDs. Accepts multiple values as a comma-separated list.
Excludes the specified makes. Accepts multiple values as a comma-separated list.
Excludes results from the specified MarketCheck website IDs. Accepts multiple values as comma-separated list.
Excludes listings from the specified sources (e.g., arnoldclark.com
, cinch.co.uk
). Accepts multiple values as comma-separated list.
Excludes listings with specified write-off categories (e.g., Category A
, Category B
, Category S
, Category N
). Accepts multiple values as comma-separated list.
Filters listings by exterior color (e.g. White
, Summit White
, Gun Metallic
). Accepts multiple values as comma-separated list.
Sorts facet buckets. Allowed values — count
(descending count, default) or index
(alphabetical).
Field name to return bucket facets for. Accepts multiple fields as a comma-separated list.
FCA authorization status for dealers. (e.g., Authorised
, Appointed Representative
, Registered
). Accepts multiple values as a comma-separated list.
Filters listings by the number of days since they were first seen by MarketCheck. Specify as min-max
days. Alternative of first_seen_at_mc_range
.
Filters listings by the date they were first seen by MarketCheck. Specify as YYYYMMDD-YYYYMMDD
(e.g., 20220523-20220631
). Alternative of first_seen_at_mc_days
.
Filters listings by the number of days since first seen on the source site. Specify as min-max
days. Alternative of first_seen_at_source_range
.
Filters listings by date first seen on the source site. Specify as YYYYMMDD-YYYYMMDD
. Alternative of first_seen_at_source_days
.
Filters listings by the number of days since they were first seen in MarketCheck inventory. Specify as min-max
days. Alternative of first_seen_range
.
Filters listings by the first seen date. Specify as YYYYMMDD-YYYYMMDD
(e.g., 20220523-20220631
). Alternative of first_seen_days
.
Filters listings by fuel type (e.g., Petrol
, Diesel
, Electric
, Petrol Electric Hybrid
). Accepts multiple values separated by commas.
Filters listings by highway fuel-economy mileage. Specify as min-max
MPG (e.g., 25-40
).
If true
, includes listings without a VIN; if false
, such listings are excluded. Default — false.
If true
, adds a preferred_dealer
flag to listings when they match client-specific filters. Default — false.
Filters listings by UK insurance group rating (e.g., E
, 15E
, etc). Accepts multiple values as comma-separated list.
Filters listings by interior color. Accepts multiple values as comma-separated list.
Filters dealers by total listing count. Specify as min-max
listings (e.g., 10-100
).
If true
, returns listings where VAT is included in the price; if false
, returns listings where VAT is excluded. Default — no filter applied.
Filters listings by the number of days since last seen. Specify as min-max
days. Alternative of last_seen_at_range
.
Filters listings by last seen date. Specify as YYYYMMDD-YYYYMMDD
(e.g., 20220523-20220631
). Alternative of last_seen_at_days
.
Latitude component of the search location (decimal degrees). Used for geospatial queries along with longitude
and radius
parameters.
Longitude component of the search location (decimal degrees). Used for geospatial queries along with latitude
and radius
parameters.
Filters listings by vehicle make (e.g., Toyota
, Ford
, Mercedes-Benz
). Accepts multiple values as comma-separated list.
Comma-separated list of field names for exact matching in combination with vrm
. Allowed values — year,make,model
or year,make,model,variant,body_type
.
Filters listings by MarketCheck category code.
Filters listings by MarketCheck dealer ID.
Filters listings by MarketCheck dealership group ID.
Filters listings by dealership group name.
Filters listings by MarketCheck location ID.
Filters listings by MarketCheck rooftop ID.
Filters listings by MarketCheck sub-dealership group ID.
Filters listings by sub-dealership group name.
Filters listings by MarketCheck website ID.
Filters listings by odometer reading. Specify as min-max
miles (e.g., 1000-50000
).
Filters listings with at least the specified number of photo links (e.g. 3
, 8
).
Filters listings with at least the specified number of cached photo links (e.g. 3
, 8
).
Filters listings by specific vehicle model (e.g., Camry
). Accepts multiple values separated by commas.
Filters listings by specific vehicle model variant (e.g., 320d M Sport
, C220d AMG Line
). Accepts multiple values as comma-separated list.
Filters listings by Manufacturer's Suggested Retail Price (MSRP). Specify as min-max
GBP (e.g., 20000-45000
).
If true
, returns all duplicate listings for a VRM; if false
(default), duplicate listings are removed. This is the opposite of dedup
.
Filters listings by number of previous owners.
When used with dealer_id
, mc_website_id
, or source
, true
returns listings actually owned by that dealer. Default — false.
Filters listings by CO2 performance rating. Specify as min-max
range (e.g., 0-150
).
If true
, returns only listings that contain at least one photo link. Default — false.
If true
, returns only listings that contain cached photo links. Default — false.
If true
, returns up to 1000 listings for plotting instead of full listing details.
Filters listings within the specified postal code (e.g., M5H 2N2
).
Filters listings by powertrain type. Accepts multiple values separated by commas.
If true
, flags listings in response from preferred dealers based on client scoring. Default — false.
If true
, returns listings only from preferred dealers. Default — false.
Filters listings by positive or negative price-change flag (e.g., positive
, negative
). Accepts multiple comma-separated values.
Filters listings by the price change in GBP. Since price changes can be positive or negative, specify as min|max
(e.g., -5000|1000
). This is a range filter.
Filters listings by advertised price in GBP. Specify as min-max
(e.g., 1000-50000
).
Search radius around the specified location in miles. Used with zip
or latitude
and longitude
for geospatial queries.
Comma-separated list of numeric field names for which to return range facets in the response.
Number of results to return per request. Default — 10. Maximum — 50.
Filters listings by seating capacity (e.g., 2
, 5
, 7
). Accepts multiple values separated by commas.
Field to sort results by. If omitted, defaults to distance when a location filter is used.
Specifies result sort order. Allowed values — asc
or desc
. Default — asc
.
Filters listings by source marketplace domain (e.g., arnoldclark.com
, cinch.co.uk
).
Pagination offset (0-based). Default — 0. Maximum page is limited to 10,000/rows
.
Alias for county
. Filters listings by state/county (e.g., Greater London
, Lincolnshire
). Accepts multiple values as a comma-separated list.
Comma-separated list of numeric fields for which to return aggregate statistics (mean, max, min, count).
Filters listings by dealer stock number.
Filters listings by transmission type (Automatic
, Manual
, etc.). Accepts multiple values separated by commas.
Alias of variant
. Filters listings by vehicle trim (e.g., EX
, Limited
). Use variant
instead. Accepts multiple values separated by commas.
If true
, returns listings that are ULEZ (Ultra Low Emission Zone) compliant. Default — false.
Filters listings by Unique Vehicle Code identifier. Used for matching specific vehicle configurations.
Alias of trim
. Filters listings by vehicle variant identifier. Accepts multiple values as comma-separated list.
Filters listings by Vehicle Detail Page (VDP) URL match.
Filters listings by vehicle registration date. Specify as YYYYMMDD-YYYYMMDD
(e.g., 20200101-20231231
).
Alias of vrm
. Filters listings by Vehicle Registration Mark (VRM/number plate). Use instead of vrm
. Accepts multiple values as comma-separated list.
Filters listings by vehicle type (Truck
, Car
). Accepts multiple values separated by commas.
Filters listings by Vehicle Registration Mark (VRM/number plate). Use instead of vehicle_registration_mark
. Accepts multiple values as comma-separated list.
Filters listings by wheelbase category (e.g., SWB
, LWB
). Accepts multiple values as comma-separated list.
Filters listings by write-off category classification (e.g., Category A
, Category B
, Category S
, Category N
). Accepts multiple values as comma-separated list.
Filters listings by model year (e.g., 2020
). Accepts multiple years separated by commas.
Filters listings by model year range. Specify as min-max
(e.g., 2015-2025
).
Year-Make-Model-Trim composite string(s). Each combo uses pipe separators and combinations can be comma-separated. For example, 2019|Ford|Fiesta|Zetec,2020|Ford|Fiesta|St-line
. Useful for finding multiple groups of similar cars. Alternatively, you can use vrm
and match
for VRM-based queries.
true
- only Attributed (Searchable) listings appear in responses
nodedup=true
to include all listings, even duplicatesAPI response includes num_found
property indicating the total number of listings matching the search criteria. By default, the API returns the first page of results with 10 listings per page.
You can use start
and rows
parameters to iterate through search results efficiently.
Parameters:
start
- Offset from which listings are returned (starts at 0)rows
- Number of listings per page (maximum 50, default 10)Increment start
proportionally to rows
value for consistent pagination:
start=0&rows=50
- fetches listings 1-50start=50&rows=50
- fetches listings 51-100start=100&rows=50
- fetches listings 101-150Limits:
rows
parameter accepts a maximum value of 50 (default is 10)
rows
greater than 50, the API will automatically use the default value of 10rows
start
and rows
exceeds your subscription's pagination limit, or if start
is greater than the total number of available results (num_found
), the API will respond with a HTTP 422 error status.The Search API allows sorting results by a single numeric or date field at a time. Sorting by multiple fields simultaneously is not supported.
Sort Parameters:
sort_by
- Field name to sort bysort_order
- Sort direction (asc
or desc
)Default Behavior:
last_seen (desc)
and vrm (asc)
Common Sort Fields
Below are the most commonly used sort fields. For a complete list, see the next table.
Field Name | sort_by | Data Type | Default Order | Description |
---|---|---|---|---|
Distance | dist | Numeric | asc | Applied by default for geo spatial requests |
Price | price | Numeric | asc | Sort listings by price |
Miles | miles | Numeric | asc | Sort listings by mileage |
DOS | dos_active | Numeric | asc | Sort listings by Days on site |
Last Seen | last_seen | Date | asc | Sort listings by last seen date |
All Available Sort Fields
Field Name | sort_by | Data Type | Default Order | Description |
---|---|---|---|---|
MSRP | msrp | Numeric | asc | Sort listings by MSRP |
First Seen | first_seen | Date | asc | Sort listings by first seen date |
DOM Active | dom_active | Numeric | asc | Sort listings by DOM Active |
DOM 180 | dom_180 | Numeric | asc | Sort listings by DOM 180 |
DOM | dom | Numeric | asc | Sort listings by DOM lifetime |
Highway MPG | highway_mpg | Numeric | asc | Sort listings by highway mileage |
City MPG | city_mpg | Numeric | asc | Sort listings by city mileage |
Combined MPG | combined_mpg | Numeric | asc | Sort listings by combined mileage |
Price Change Percentage | price_change_percent | Numeric | asc | Sort listings by price change percentage |
sort_by
values. Results return with default sorting when invalid sort fields are specified.The Search API supports facets for building UI filters and analyzing inventory distribution. Use facets to get unique value counts for categorical fields and range-based counts for numeric fields.
Field facets return unique terms and their counts for categorical data, useful for building search filters and understanding inventory distribution.
Parameters and Syntax
facets
— Comma-separated list of field names to facet on. Supports pagination and minimum count:facets=field_name|offset|limit|min_count
offset
(default: 0): Start position for termslimit
(default: 20, max: 1000): Number of terms to returnmin_count
(optional): Minimum count for a term to be includedfacets=make|0|60|2
returns top 60 makes with at least 2 listings eachfacet_sort
— Controls sort order of facet terms:count
(default): Sort by frequency (highest first)index
: Sort alphabetically|
) character, which is used to separate positional parameters. For example, use %7C
for |
in URLs.Example
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
year: '2023',
make: 'Ford',
model: 'Puma',
rows: '0',
facets: 'variant|0|100|0,city|0|100|100'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Response
facets
field of the response, structured as key-value pairsitem
and count
properties
item
is the unique termcount
is the number of listings for that term.{
"facets": {
"make": [
{ "item": "Toyota", "count": 12345 },
{ "item": "Honda", "count": 6789 },
...
],
"city": [
{ "item": "Lincoln", "count": 1000 },
{ "item": "London", "count": 800 },
...
]
}
}
If requested field is not allowed for faceting, it will be included in the response but with an error message indicating the field is not supported for facets.
{
"facets": {
"xyz": [
{
"result": "Error",
"message": "Field xyz is not allowed in facets"
}
]
}
}
Available Field Facets
Field | Description |
---|---|
base_ext_color | Base exterior color |
base_int_color | Base interior color |
body_type | Main body classification |
car_location_city | City of the car location |
car_location_county | County of the car location |
car_location_seller_name | Seller name at car location |
car_location_street | Street address of the car location |
car_location_zip | Postal code of the car location |
city | Listing city location |
county | Listing county location |
cylinders | Engine cylinder count |
dealer_id | MarketCheck dealer ID |
dealer_type | Type of dealer (e.g., franchise, independent) |
doors | Number of doors |
drivetrain | Vehicle drivetrain type |
engine | Complete engine specification |
engine_aspiration | Engine aspiration type (e.g., turbo, naturally aspirated) |
engine_size | Engine displacement |
ev_battery_type | Electric vehicle battery type |
exterior_color | Exterior color designation |
fca_status | FCA authorization status |
fuel_type | Primary fuel type |
interior_color | Interior color designation |
insurance_group | Insurance group classification |
make | Vehicle manufacturer |
mc_category | MarketCheck category name (e.g., dealer, retailer) |
mc_dealer_id | MarketCheck dealer ID (under new system of dealership management) |
mc_location_id | MarketCheck location ID |
mc_rooftop_id | MarketCheck rooftop ID |
mc_website_id | MarketCheck website ID |
model | Vehicle model name |
model_variant | Vehicle model variant |
postal_code | Listing postal code |
powertrain_type | Powertrain classification |
seating_capacity | Passenger seating capacity |
source | Website domains where listed |
transmission | Transmission configuration |
uvc_id | Unique Vehicle Code identifier |
variant | Vehicle variant identifier |
vehicle_type | General vehicle category |
wheelbase_category | Wheelbase category classification |
write_off_category | Write-off category classification |
year | Vehicle model year |
Facet Pagination
By default, facets return the top 20 terms for each field. You can control pagination using positional parameters offset
, limit
:
offset
- Starting position for terms (default: 0)limit
- Maximum number of terms to return (default: 20, max: 1000)Example: facets=make|20|20
returns makes 21-40
Facets Sorting
Facet terms can be sorted by count or alphabetically using the facet_sort
parameter:
count
(default) - Sort by frequency (highest first)index
- Sort alphabeticallyExample: facets=make|0|20&facet_sort=index
returns makes sorted alphabetically
Range facets provide statistical distribution analysis for numeric fields, creating buckets for data visualization and market insights.
Parameters and Syntax
range_facets
— Comma-separated list of field names to facet on, with optional range and interval:range_facets=field_name|start|end|interval
start
(optional): Lower bound of the range (default varies by field)end
(optional): Upper bound of the range (default varies by field)interval
(optional): Size of each bucket (default: (end - start)/20
)range_facets=price|500|20000|1000
returns price ranges with 1000 intervals between 500 and 20000.start
is specified but end
is not, the API adds the default end value for that field to the start value.interval
has to be greater than (end - start)/200
, otherwise the API will return an error.|
) character, which is used to separate parameters. For example, use %7C
for |
in URLs.Example
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
year: '2020',
make: 'ford',
model: 'puma',
rows: '0',
range_facets: 'price|500|100000|10000,miles|5000|50000|5000'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Response
range_facets
field of the response, structured as key-value pairscounts
: Array of buckets with lower_bound
, upper_bound
, and count
propertiesinterval
: Size of each bucketstart
: Lower bound of the rangeend
: Upper bound of the rangebefore
: Count of listings below the start valuebetween
: Count of listings within the rangeafter
: Count of listings above the end value{
"range_facets": {
"xyz": {
"result": "Error",
"message": "Field xyz is not allowed in range facets"
}
}
}
Available Range Facets
Field | Description | Default Range |
---|---|---|
city_mpg | City fuel efficiency | 0-100 |
combined_mpg | Combined fuel efficiency | 0-100 |
dom | Days on market | 0-100 |
dom_180 | Days on market (180-day window) | 0-100 |
dom_active | Active days on market | 0-100 |
dos_active | Days on source active | 0-100 |
ev_battery_capacity | Electric vehicle battery capacity | 0-100 |
ev_vehicle_range | Electric vehicle range | 0-10000 |
highway_mpg | Highway fuel efficiency | 0-100 |
miles | Vehicle mileage | 0-10000 |
msrp | Manufacturer suggested retail price | 500-10000 |
performance_co2 | CO2 performance rating | 0-150 |
price | Listing price | 500-10000 |
The Search API can calculate statistics for numeric fields, providing insights into inventory distribution and market trends.
Parameters
stats
— Comma-separated list of fields to calculate statistics on
stats=price,miles,dos_active
stats
can be combined with other parameters like facets
, sort_by
, and rows
for detailed analysisExample
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
year: '2024',
make: 'ford',
model: 'puma',
rows: '0',
stats: 'price,dos_active'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Response
stats
field of the response, structured as key-value pairsmin
: Minimum valuemax
: Maximum valuecount
: Total number of listings with non-null valuesmissing
: Number of listings with missing valuessum
: Total sum of valuesmean
: Average valuestddev
: Standard deviationsum_of_squares
: Sum of squares for variance calculationmedian
: Median valuepercentiles
: Percentile distribution (5th, 25th, 50th, 75th, 90th, 95th, 99th){
"stats": {
"xyz": {
"result": "Error",
"message": "Field xyz is not allowed in stats"
}
}
}
Available Stats Fields
Below are the available fields for statistics calculations:
Financial Metrics
Field | Description |
---|---|
price | Listing price statistics |
msrp | MSRP statistics |
Performance and Efficiency
Field | Description |
---|---|
miles | Vehicle mileage statistics |
highway_mpg | Highway fuel efficiency statistics |
city_mpg | City fuel efficiency statistics |
Market Timing
Field | Description |
---|---|
dom | Days on market statistics |
dom_180 | DOM 180-day statistics |
dom_active | Active days on market statistics |
dos_active | Days on site active statistics |
Search for cars available near specific locations using geographic coordinates, postal codes, or radius parameters for location-based inventory discovery.
Parameters
latitude
and longitude
- Exact coordinatespostal_code
- Postal code reference pointradius
- Search radius in milesYou can combine location parameters with any other search filters for precise geographic targeting.
Example
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/active',
params: {
api_key: 'YOUR_API_KEY',
year: '2024',
make: 'ford',
model: 'puma',
rows: '2',
postal_code: 'CO4 9YA',
radius: '50'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Response
dist
field with distance from the specified coordinates or postal codemake=Toyota,Honda,Ford
.Example:
Here we're filtering for electric SUVs from 2023 to 2025 from Volvo, Ford, Audi, Hyundai and Chevrolet.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
rows: '2',
fuel_type: 'Electric',
body_type: 'SUV',
year: '2023,2024,2025',
make: 'Volvo,Ford,Audi,Hyundai,Chevrolet'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Access specific dealer inventories using dealer_id
or source
parameters. By default, these return all listings from a dealer's website, including duplicates and listings not attributed to them.
Example:
All Dealer Listings:
Here we're retrieving all listings from a specific dealer using their dealer_id
:
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', dealer_id: '10030282', rows: '1'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Dealer's Owned Inventory:
Use owned=true
with source
parameter to get only vehicles attributed to the dealer through MarketCheck's attribution algorithm:
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', source: 'cinch.co.uk', owned: 'true', rows: '1'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
county
and city
parameters to filter by specific regions within the UK.postal_code
to filter by specific postal codes for precise regional targeting.Example:
Here we're filtering for vehicles in Greater London.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', county: 'Greater London', rows: 2},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
vehicle_registration_mark
or vrm
parameter to search for a specific vehicle by its VRM (Vehicle Registration Mark).nodedup=true
parameter to your request. This will return all listings of that VRM, including those that are not attributed (i.e. not searchable).Example:
Here we're searching for a vehicle by its VRM.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', vrm: 'B21CLN'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Here we're searching for all listings of that VRM, including duplicates.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', rows: 2, vrm: 'B21CLN', nodedup: 'true'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
This is the most common use case for the Search API, allowing you to find similar vehicles based on various attributes.
vrm
and match
parameters:
vrm
- Vehicle Registration Mark to find similar vehicles formatch
- Comma-separated list of attributes to match on (allowed values: year
, make
, model
, variant
, body_type
)match
parameter is optional, and if not specified, the API will match similar cars based on internal decoded VRM specifications.Example:
Here we're finding similar cars to a BMW 3 Series by matching year, make, model, and variant.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
vrm: 'AJ17XGA',
match: 'year,make,model,variant',
rows: 2
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
stats
parameter to calculate statistics for specific fields, such as price, miles, and days on market to analyze market trends and vehicle competitiveness.Example:
Here we're finding average price and mileage for similar cars to a specific VRM, matching on year, make, model, and variant.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
vrm: 'SG64FYJ',
match: 'year,make,model,variant',
stats: 'price,miles',
rows: 0
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
dom
- Days on market, throughout the entire lifetime of the cardom_180
- Days on market in the last 180 daysdom_active
- Active days on market across all sourcesdos_active
- Days on source activestats
parameter to calculate statistics for these fields, such as average days on market, minimum and maximum days on market, and percentiles.first_seen_range
and last_seen_range
parameters to filter listings based on when they were first and last seen, respectively.Example:
Here we're finding average days on market for similar cars to a specific VIN, matching on year, make, model, and trim, and filtering by first seen date in the last 30 days.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
vrm: 'SG64FYJ',
match: 'year,make,model,trim',
stats: 'dom,dom_active,dos_active',
first_seen_days: '30-0',
rows: 0
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
plot
is a special parameter that allows you to pull more number of listings but with limited fields, for the purpose of plotting data on a map or chartplot
is set to true
, the API returns upto 1000 listings with limited fields in one goExample:
Here we're pulling a plot of vehicles in Lancashire, UK, with limited fields.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', county: 'Lancashire', plot: 'true', rows: 1000},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
price_range
, miles_range
, msrp_range
, dom_range
, dom_180_range
, dom_active_range
, dos_active_range
, highway_mpg_range
, city_mpg_range
and moreExample:
Here we're filtering for vehicles with price between $10,000 and $20,000, mileage between 0 and 50,000 miles, and days on market between 0 and 30 days.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
price_range: '10000-20000',
miles_range: '0-50000',
dom_active: '0-30',
rows: 2
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
facets
and range_facets
parameters to get unique values and distributions for specific fields.facets
provides unique counts for categorical fields, while range_facets
provides distribution analysis for numeric fields.Example:
Here we're getting unique trim and fuel types for 2023 Ford Puma vehicles, with a minimum count of 10 listings for each variant and fuel type.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/active',
params: {
api_key: 'YOUR_API_KEY',
rows: 0,
year: '2023',
make: 'Ford',
model: 'Puma',
facets: 'variant|0|1000|10,fuel_type|0|1000|10'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
photo_links
or photo_links_cached
parameters to get only the listings that have valid photo links or cached photo links.photo_links
returns the original photo links, while photo_links_cached
returns the cached photo links that are stored in the MarketCheck database.Example:
Here we're filtering for vehicles with valid photo links, and returning only the listings that have photos.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', min_photo_links: '5', photo_links: 'true', rows: 2},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
include_non_vin_listings=true
parameter in your requestExample:
Here we're including non-VRM listings in our search results, which will return listings that do not have a VRM.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', rows: 1, include_non_vin_listings: 'true'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
first_seen_at_source_range
(absolute) or first_seen_at_source_days
(relative) parametersExample:
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', first_seen_at_source_days: '1-*', rows: '1'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
first_seen_at_range
or first_seen_days
parameter will not work for this use case, as they facilitate filtering based on when the listing (not the vehicle) was first seen in the MarketCheck database at that source, which may not be the same as when it was first seen on the source website.price_change
parameter or price_change_range
parameter, used in conjunction with first_seen_at_range
or first_seen_days
parametersref_price
is substantially older due to the listing being stale, or past historic listing of the same vehicle that has been re-listed at a later dateExample:
Here we're finding vehicles that have had their prices increased in last 24 hours, sorted by price change percentage in descending order.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
rows: '2',
first_seen_days: '1-*',
price_change: 'positive',
sort_by: 'price_change_percent',
sort_order: 'desc'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
As is evident from the example above, it can return listings that have had their prices corrected due to crawling errors. That is the reason why we recommend using price_change_range
parameter to filter out listings that have had their prices changed within a specific range, such as 50% or lower, to avoid such listings.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
rows: '2',
first_seen_days: '1-*',
price_change: 'positive',
price_change_range: '0-50',
sort_by: 'price_change_percent',
sort_order: 'desc'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
fuel_type
parameterfuel_type
parameter, we recommend using facets to get the exact values for filteringExample:
Here we're first gathering the unique fuel types using facets
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', facets: 'fuel_type|0|100', rows: '0'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Next, we can filter for electric vehicles using the fuel_type
parameter with many values, including electric
, Petrol/electric
, Electric Hydrogen
, which are the values that are returned in the facets response.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
fuel_type: 'electric,Petrol/electric,Electric Hydrogen',
rows: '2'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
stats
parameterExample:
Here we're finding the typical mileage for 2022 Volkswagen Golf models.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
year: '2022',
make: 'Volkswagen',
model: 'Golf',
stats: 'miles',
rows: '0'
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
The UK market includes specific regulatory filtering options for Financial Conduct Authority (FCA) compliance. Use the fca_status
parameter to ensure you're only dealing with properly authorized dealers listings, which is crucial for regulatory compliance and consumer protection in the UK automotive finance sector.
Example:
Here we're filtering for vehicles from FCA authorized listings only.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', fca_status: 'authorised'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
You can filter vehicles based on environmental criteria and fuel efficiency, important for UK market regulations like ULEZ compliance. This is particularly valuable for London and other UK cities with environmental zones where emissions standards determine vehicle access and charges.
Example:
Here we're filtering for ULEZ compliant vehicles with good fuel efficiency for the city London.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {api_key: 'YOUR_API_KEY', ulez_compliant: 'true', city: 'London', rows: 2},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
You can search specifically for electric vehicles with battery and range specifications. Use EV-specific parameters like ev_battery_capacity_range
, ev_vehicle_range
, and ev_battery_type
to find vehicles that meet specific electric performance requirements and charging infrastructure compatibility.
Example:
Here we're searching for electric vehicles with battery capacity between 0 and 10 kWh, vehicle range between 100 and 500 miles, and battery type as BEV.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
ev_battery_capacity_range: '0-10',
ev_vehicle_range: '100-500',
ev_battery_type: 'BEV',
rows: 2
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
You can designate certain dealers as preferred, allowing them to be uniquely identified in the API response. When you set a list of dealers as preferred, you can leverage this feature in the Search API.
preferred_dealer
flag in the Dealers section of responseParameter | Type | Default | Description | Required |
---|---|---|---|---|
preferred_dealers_only | boolean | false | Returns listings only from preferred dealers without adding a preferred_dealer flag in the dealer section. | No |
include_preferred_dealer_flag | boolean | false | Add a preferred_dealer flag in the dealer section to indicate that the listing is from a preferred dealer. | No |
Example:
Here we're filtering for listings from preferred dealers only.
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/uk/active',
params: {
api_key: 'YOUR_API_KEY',
preferred_dealers_only: 'true',
include_preferred_dealer_flag: 'true',
rows: 2
},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
To set up a preferred dealers list for your account, please contact MarketCheck team at sales@marketcheck.com. Once the preferred dealers are configured, the include_preferred_dealer_flag
& preferred_dealers_only
parameters will allow you to see the preferred dealer flag & only preferred dealers in the API responses.
The Inventory Search API returns JSON data with comprehensive vehicle listing information, including inventory details, dealer information, vehicle specifications, and optional facets and statistics.
interface InventorySearchResponse {
num_found: number; // Total number of listings matching search criteria
listings: Listing[]; // Array of vehicle listings
facets?: Facets; // Field facets (when facets parameter is used)
stats?: Stats; // Statistical data (when stats parameter is used)
range_facets?: RangeFacets; // Range-based facets (when range_facets parameter is used)
}
interface Listing {
id: string; // Unique listing identifier
vehicle_registration_mark?: string; // Vehicle Registration Mark (UK)
uvc_id?: string; // Unique Vehicle Code identifier
heading?: string; // Formatted listing title
price?: number; // Current listing price in GBP
miles?: number; // Vehicle mileage
msrp?: number; // Manufacturer's Suggested Retail Price (as per dealer website)
data_source: string; // Original data source identifier. Mostly `mc` for MarketCheck
is_certified?: number; // Certification status
vdp_url?: string; // Vehicle detail page URL
exterior_color?: string; // Exterior color description
interior_color?: string; // Interior color description
base_int_color?: string; // Standardized interior color
base_ext_color?: string; // Standardized exterior color
dom: number; // Days on market (lifetime)
dom_180: number; // Days on market in last 180 days
dom_active: number; // Days on market while active
dos_active: number; // Days on site while active
seller_type: string; // Type of seller (dealer, fsbo, auction)
inventory_type: string; // Inventory classification (new, used)
stock_no?: string; // Dealer stock number
last_seen_at: number; // Last seen timestamp (Unix Seconds), when the listing was last updated
last_seen_at_date: string; // Last seen date (ISO format)
scraped_at: number; // First seen timestamp (Unix Seconds), when the listing was first scraped
scraped_at_date: string; // First seen date (ISO format)
first_seen_at: number; // First seen timestamp (Unix Seconds), when the listing was first seen. Copy of `scraped_at` field
first_seen_at_date: string; // First seen date (ISO format)
first_seen_at_source: number; // First seen at source website timestamp (Unix Seconds)
first_seen_at_source_date: string; // First seen at source website date (ISO format)
first_seen_at_mc: number; // First seen at MarketCheck timestamp (Unix Seconds)
first_seen_at_mc_date: string; // First seen at MarketCheck date (ISO format)
ref_price?: number; // Previously listed price at same source for reference
price_change_percent?: number; // Price change percentage from reference price
ref_price_dt?: number; // Reference price date timestamp (Unix Seconds)
ref_miles?: number; // Previously listed mileage at same source for reference
ref_miles_dt?: number; // Reference mileage date timestamp (Unix Seconds)
source: string; // Data source website domain
model_code?: string; // Manufacturer model code
in_transit?: boolean; // Vehicle in transit status
availability_status?: string; // Current availability status
ulez_compliant?: boolean; // ULEZ compliance status
fca_status?: string; // FCA authorization status
write_off_category?: string; // Write-off category classification
num_owners?: number; // Number of previous owners
vehicle_registration_date?: string; // Vehicle registration date
insurance_group?: number; // UK insurance group rating
is_vat_included?: boolean; // VAT inclusion status
co2_emissions?: number; // CO2 emissions rating
performance_co2?: number; // CO2 performance rating
ev_battery_capacity?: number; // Electric vehicle battery capacity
ev_battery_type?: string; // Electric vehicle battery type
ev_vehicle_range?: number; // Electric vehicle range
media?: Media; // Photos and media content links
dealer?: Dealer; // Dealer information
mc_dealership?: McDealership; // Enhanced dealer information from MarketCheck's new dealership system
build?: Build; // Vehicle specifications
}
interface Media {
photo_links?: string[]; // Array of photo URLs from dealer website
photo_links_cached?: string[]; // Array of cached photo URLs from MarketCheck
}
interface Dealer {
id: number; // Unique dealer identifier
website: string; // Dealer website URL
name: string; // Dealer business name
dealer_type?: string; // Dealer classification (franchise, independent)
street?: string; // Street address
city?: string; // City name
county?: string; // County name (UK)
country?: string; // Country code
latitude?: string; // Geographic latitude
longitude?: string; // Geographic longitude
postal_code?: string; // UK postal code
phone?: string; // Contact phone number
seller_email?: string; // Contact email address
fca_status?: string; // FCA authorization status
preferred_dealer?: boolean; // Flag indicating if this is a preferred dealer
}
interface McDealership {
mc_website_id?: number; // MarketCheck website identifier
mc_dealer_id?: number; // MarketCheck dealer identifier
mc_location_id?: number; // MarketCheck location identifier
mc_rooftop_id?: number; // MarketCheck rooftop identifier
mc_dealership_group_id?: number; // MarketCheck dealership group identifier
mc_dealership_group_name?: string; // MarketCheck dealership group name
mc_sub_dealership_group_id?: number; // MarketCheck sub-dealership group identifier
mc_sub_dealership_group_name?: string; // MarketCheck sub-dealership group name
mc_category?: string; // MarketCheck seller category (Dealer, FSBO, Auction, etc.)
website?: string; // Dealer website URL
name?: string; // Dealer business name
dealer_type?: string; // Dealer classification (franchise, independent)
street?: string; // Street address
city?: string; // City name
county?: string; // County name (UK)
country?: string; // Country code
latitude?: string; // Geographic latitude
longitude?: string; // Geographic longitude
postal_code?: string; // UK postal code
phone?: string; // Contact phone number
fca_status?: string; // FCA authorization status
}
interface Build {
year: number; // Model year
make: string; // Vehicle manufacturer
model?: string; // Vehicle model
model_variant?: string; // Vehicle model variant
trim?: string; // Trim level
variant?: string; // Specific variant identifier
body_type?: string; // Body style (saloon, hatchback, estate, etc.)
vehicle_type?: string; // Vehicle category
transmission?: string; // Transmission type
drivetrain?: string; // Drivetrain configuration
fuel_type?: string; // Fuel type (petrol, diesel, electric, hybrid, etc.)
engine?: string; // Engine description
engine_size?: number; // Engine displacement
doors?: number; // Number of doors
cylinders?: number; // Number of cylinders
made_in?: string; // Manufacturing country
overall_height?: string; // Vehicle height
overall_length?: string; // Vehicle length
overall_width?: string; // Vehicle width
wheelbase_category?: string; // Wheelbase classification
std_seating?: string; // Standard seating capacity
highway_mpg?: number; // Highway fuel economy
city_mpg?: number; // City fuel economy
combined_mpg?: number; // Combined fuel economy
seating_capacity?: number; // Passenger seating capacity
performance_torque_ftlb?: number; // Torque in foot-pounds
performance_maxspeed_mph?: number; // Maximum speed in miles per hour
performance_torque_rpm?: number; // Torque at RPM
performance_power_bhp?: number; // Power in brake horsepower
performance_power_rpm?: number; // Power at RPM
performance_torque_nm?: number; // Torque in Newton-meters
performance_power_kw?: number; // Power in kilowatts
performance_co2?: number; // CO2 emissions rating
euro_status?: number; // Euro emissions standard status
}
interface Facets {
[key: string]: {
item: string; // Facet term/value
count: number; // Number of listings for this term
}[];
}
interface Stats {
[key: string]: {
min: number; // Minimum value
max: number; // Maximum value
count: number; // Number of values
missing: number; // Count of missing values
sum: number; // Sum of all values
mean: number; // Arithmetic mean
stddev: number; // Standard deviation
sum_of_squares: number; // Sum of squared values
median: number; // Median value
percentiles: {
[key: string]: number; // Percentile values
};
};
}
interface RangeFacets {
[key: string]: {
counts: {
lower_bound: number; // Range lower bound
upper_bound: number; // Range upper bound
count: number; // Number of listings in range
}[];
interval: number; // Interval size
start: number; // Starting value
end: number; // Ending value
before?: number; // Count below start
between: number; // Count within range
after?: number; // Count above end
};
}
200 OK
- Returns JSON object with search resultsnum_found
field indicating total matching listingslistings
array contains vehicle data (empty if no matches)facets
, stats
, and range_facets
based on request parametersStatus Code | Description | Common Causes |
---|---|---|
400 | Bad Request | Invalid parameter values or malformed request |
401 | Unauthorized | Missing/invalid API key |
403 | Forbidden | Access denied to resource |
422 | Unprocessable Entity | Pagination limits exceeded, invalid parameters |
429 | Too Many Requests | Rate limit exceeded |
500 | Internal Server Error | Temporary server issues |
502 | Bad Gateway | Issues with upstream services |
503 | Service Unavailable | API maintenance or downtime |
Error Response Format
Most error responses follow this structure, except for 502 and 503 errors
{
"code": <HTTP status code>,
"message": "<Error message describing the issue>"
}
Best Practices
Optimal Request Patterns
radius
values for spatial searches to improve performance. If too large area is desired then consider using county
or city
parameters instead of radius
, as they are more efficient.Response Time Expectations
Search Type | Expected Response Time |
---|---|
Basic search (city, make) | < 200ms |
Complex filters (5+ params) | < 500ms |
Spatial search (< 100mi radius) | < 300ms |
Stats calculations | < 800ms |
Large facet requests | < 1s |