Retrieve detailed information about specific automotive auction listings using their unique listing identifier.
GET https://api.marketcheck.com/v2/listing/car/auction/{listing_id}
Path Parameter:
listing_id
- The unique identifier for the auction listing you want to retrieve. This parameter is case-sensitive and must be provided in the URL path.The following example illustrates how to use the API to retrieve auction listing details:
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/listing/car/auction/W1N0J6EB2PG149336-d084e6e2-cd31',
params: {api_key: 'YOUR_API_KEY'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Available parameters for retrieving detailed auction listing information:
Your MarketCheck API authentication key. Required for every request, unless OAuth is used.
The Auction Listing Details API returns detailed information about the specified auction listing in a structured JSON format.
The response schema for Auction Listing Details is identical to the Car Listing Details API, but focuses on auction listings. The data structure includes all the same vehicle specifications, pricing information, and media content, but with auction house-specific seller information and marketplace context appropriate for wholesale auction listings.
Refer to the Car Listing Details API response schema for complete field definitions, data types, and detailed descriptions of all response components.
Status Code | Description | Common Causes |
---|---|---|
400 | Bad Request | Invalid parameter values |
401 | Unauthorized | Missing/invalid API key |
403 | Forbidden | Access denied to resource |
422 | Unprocessable Entity | Invalid listing_id |
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 |
Retrieve detailed information about auction listings to analyze wholesale market trends, pricing patterns, and vehicle availability for acquisition and resale decisions.
Example:
Here we're retrieving complete details for a specific auction listing including specifications, pricing, auction house information, and marketplace data:
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.marketcheck.com/v2/listing/car/auction/5TFRM5F10FX089674-18e6d270-7a2c',
params: {api_key: 'YOUR_API_KEY'},
headers: {Accept: 'application/json'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}