MarketCheck API provides access to comprehensive automotive data across North America and UK. Access real-time inventory listings, VIN decode, market analytics, and OEM data for cars, RVs, motorcycles, and heavy equipment.
The platform delivers powerful market intelligence through advanced analytics endpoints covering market days supply (MDS), vehicle popularity statistics, price prediction engines, and other actionable insights for automotive professionals and businesses.
The popular use cases MarketCheck's APIs power are car search, vehicle valuations, automotive market trends and insights, inventory syndication, dealer performance benchmarking.
All API requests are made over secured HTTPS endpoints.
Environment | Host | Base Path |
---|---|---|
Production | api.marketcheck.com | /v2/ |
Staging | staging.api.marketcheck.com | /v2/ |
All MarketCheck API endpoints follow RESTful conventions and accept/return data in JSON format.
GET
for data access, POST
for some data submissions for preference or bulk operationsGET
and JSON body for POST
where applicableTo start using the MarketCheck API, you'll need an API key. Sign up at MarketCheck Universe to create an account and subscribe to an API package.
See the Authentication guide for details on API keys, environments, and usage limits.
Here's a simple example using API key authentication to search car listings:
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/search/car/active',
params: {api_key: 'YOUR_API_KEY', car_type: 'used', make: 'Toyota', model: 'Camry'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
MarketCheck provides access to structured data across multiple verticals:
The platform exposes RESTful APIs for:
Region | Inventory Types | Data Sources |
---|---|---|
US | Cars, RVs, Motorcycles, Heavy Equipment | 45,000+ dealer, auctions, private sellers, OEMs |
Canada | Cars | 8,200+ dealer sites and private sellers |
UK | Cars | 10,000+ dealer sites and private sellers |
Common applications built with MarketCheck APIs:
Marketplaces & Search
Financial Services
Analytics & Intelligence
VIN & History Services
Dealership Tools
API | Description |
---|---|
Inventory Search | Search active inventory across all dealers |
Dealer Active Inventory | Special purpose search API for dealer syndication |
Dealership Inventory Syndication | Specialized dealer inventory syndication access with high-volume pagination |
Marketplace Inventory Syndication | Transform dealer inventory into multiple marketplace-ready formats |
Private Party Search | Search cars for sale by private parties |
Auction Inventory Search | Search all auctioned cars for sale |
Recent Inventory Search | Search last 90 days inventory |
Listing Details | Get complete listing details for VDP |
Auto-complete | Auto suggest user input completion |
Cached Images | Fetch cached car images from listings |
VIN History | Get historic listings for a VIN |
OEM Incentives | Get manufacturer financing incentives |
VIN Decoder | Decode 17 digit VIN for specifications |
Enhanced VIN Decoder | Decode VIN for detailed specifications |
Market Days Supply (MDS) | Get market supply based on sales data |
Sales Stats | Get inferred sales figures for 90 days |
Stats | Get current cars for sale statistics |
Popular Cars | Get popular cars and sales statistics |
Recalls | Get recall information for VIN |
Dealer | Search car dealerships with contact information |
API | Description |
---|---|
Inventory Search | Search active RV inventory |
Listing Details | Get complete listing details for VDP |
Auto-complete | Auto suggest user input completion |
Dealer | Search RV dealerships with contact information |
API | Description |
---|---|
Inventory Search | Search active heavy equipment inventory |
Listing Details | Get complete listing details for VDP |
Auto-complete | Auto suggest user input completion |
Dealer | Search heavy equipment dealerships |
API | Description |
---|---|
Inventory Search | Search active motorcycle inventory |
Listing Details | Get complete listing details for VDP |
Auto-complete | Auto suggest user input completion |
Dealer | Search motorcycle dealerships |
MarketCheck APIs are trusted by marketplaces, fintechs, and automotive businesses to access clean, normalized, and timely data for millions of vehicles. Whether you're building a VIN decoder, pricing engine, or car search platform — we’ve got you covered.