Gauge API
Create your own price indication and benchmarking gauge.
Produce the inputs to make a gauge UI based on vehicle or listing-driven inputs
Authorizations
ApiKeystringRequired
Query parameters
regionstring Β· enumOptionalPossible values:
The region to perform this request in
reference_idstringOptional
An optional reference id which will be stored against usage records if supplied
Body
regionstring Β· enumRequiredPossible values:
odometerintegerRequired
listing_priceintegerRequired
vehicle_idstringOptional
vinstringOptional
regostringOptional
statestringOptional
vehicle_descriptionstringOptional
marketplacestringOptional
marketplace_idstringOptional
Responses
200
Success
application/json
successbooleanOptionalDefault:
true400
Bad Request
application/json
401
Unauthorized
application/json
post/v2/valuations/gauge/
POST /v2/valuations/gauge/ HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 182
{
"region": "au",
"odometer": 1,
"listing_price": 1,
"vehicle_id": "text",
"vin": "text",
"rego": "text",
"state": "text",
"vehicle_description": "text",
"marketplace": "text",
"marketplace_id": "text"
}{
"success": true,
"gauge": {
"id": "text",
"fill": 1,
"listing_price": 1,
"market_range_min": 1,
"market_range_max": 1,
"confidence": 1,
"sample_size": 1,
"vehicle_title": "text"
}
}Example Post Body
Use Case Driven Implementation Examples
Marketplace Implementation
Dealer Website Implementation (AutoGrab Customer)
Dealer Website Implementation (Non-Direct Customer)
Last updated
Was this helpful?