Market Overlay
Get the leads used to justify pricing for a given AutoGrab Vehicle ID.
Get the leads used to justify pricing for a given Vehicle ID
ID of the vehicle you are requesting a market overlay on
The minimum number of days to show listings for (default 60)
60
If enabled, vehicles that were manufactured up to one year before and one year after your chosen vehicle will also be included in the results
false
If enabled, leads that are considered outliers will be excluded from the results
false
If enabled, leads that are not currently on the market will be excluded from the results
false
If enabled, all listings that are currently on the market will be returned
false
If enabled, leads that are considered trash, written off, damaged, or missing details will be included in the results
false
Comma separated array of additional overlay feature codes
dealer_contact_details,lead_starting_price
The minimum range observed against similar vehicles
50000
The maximum range observed against similar vehicles
100000
An optional reference id which will be stored against usage records if supplied
MY_REFERENCE_123
GET /v1/vehicles/market-overlay/{vehicle_id} HTTP/1.1
Host:
Accept: */*
{
"success": true,
"sample_size": 10,
"days_checked": 60,
"avg_days_to_sell": 30,
"outlier_count": 2,
"days_supply": 45,
"avg_price": 25000,
"min_price": 20000,
"max_price": 30000,
"avg_odometer": 80000,
"min_odometer": 50000,
"max_odometer": 120000,
"leads": [
{
"id": "abc123",
"color": "red",
"drive_away_price": 25000,
"is_outlier": false,
"kms": 75000,
"listing_url": "https://example.com/listing/123",
"listing_sources": [
"autotrader.com.au"
],
"listed_at": "2023-01-15",
"price": 23500,
"release_year": 2018,
"release_month": 6,
"removed_at": "2023-02-20",
"seller_type": "private",
"state": "NSW",
"tag_ids": [
"tag1",
"tag2"
],
"vehicle_id": "veh123456",
"year": 2018,
"all_images": [
"https://example.com/image1.jpg"
],
"primary_description": "Well maintained vehicle with full service history"
}
]
}
Last updated