LogoLogo
API StatusSupportPostmanContact Us
๐Ÿ‡ฌ๐Ÿ‡ง UK AutoGrab API Doc
๐Ÿ‡ฌ๐Ÿ‡ง UK AutoGrab API Doc
  • AutoGrab Basics
    • AutoGrab Developer Hub
    • Integration Overview
    • API Test Cases
    • FAQ
  • Authentication
    • API Key
    • OAuth Authentication
  • Vehicle Search
    • Vehicle Searching Basics
    • Plain-text Search
    • VRM Search
    • VIN Search
    • Facet Search
    • Vehicle ID Search
    • Marketplace ID Lookup
  • Sourcing
    • Sourcing Basics
    • Market Overlay
    • Market Statistics
    • Stock Feeds
  • Vehicle Data
    • Vehicle Data Basics
    • Recall Search
    • MOT & Tax Search
    • Vehicle History
    • Factory Build Data
    • Factory Fitted Options
  • Valuation
    • Valuation Basics
    • Valuation Predictions
    • Residual Valuations
    • Max Offer Configuration
    • Gauge API
  • Embeddable Products
    • Embeddable Basics
    • Gauge Widget
    • Valuation Widget
    • Market Overlay Widget
  • Customer Recapture
    • Customer Recapture
    • Webhooks Integration
  • Insurance
    • Pre-Accident Valuation
Powered by GitBook
LogoLogo

Links

  • Terms of Use

2024 ยฉ AutoGrab Pty Ltd. ABN 79 638 468 569

On this page

Was this helpful?

Export as PDF
  1. Valuation

Residual Valuations

Predict the future value of a vehicle.

PreviousValuation PredictionsNextMax Offer Configuration

Last updated 3 months ago

Was this helpful?

The Residual Value prediction API uses current market trends to influence the depreciation curve of newer vehicles. The API allows you to influence the outcome of the prediction by either mutating stored Recommended Retail Price, or by providing your own Retail Value for the car.

Calculate future values for a vehicle using an AutoGrab ID

post

Calculate future values for a vehicle using an AutoGrab ID

Authorizations
Body
regionstring ยท enumOptionalPossible values:
vehicle_idstringRequired
initial_kmsnumberOptionalDefault: 0
yearly_kmsnumberRequiredDefault: 10000
rrp_overwritenumberOptional
rrp_adjustmentnumberOptional
colorstringOptional
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
POST /v2/valuations/residual HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 118

{
  "region": "au",
  "vehicle_id": "text",
  "initial_kms": 1,
  "yearly_kms": 1,
  "rrp_overwrite": 1,
  "rrp_adjustment": 1,
  "color": "text"
}
{
  "success": true,
  "predictions": [
    {
      "year": 1,
      "kms": 1,
      "valuation": 1,
      "score": 1
    }
  ]
}