LogoLogo
API StatusSupportPostmanContact Us
๐Ÿ‡ฆ๐Ÿ‡บ AU AutoGrab API Doc
๐Ÿ‡ฆ๐Ÿ‡บ AU 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
    • Registration Plate Search
    • Registration Status
    • VIN Search
    • Facet Search
    • Vehicle ID Search
    • Upstream Vehicle Search
    • Marketplace ID Lookup
  • Sourcing
    • Sourcing Basics
    • Market Overlay
    • Market Statistics
    • Stock Feeds
  • Vehicle Data
    • Vehicle Data Basics
    • Detailed Specifications Data
    • Vehicle History
    • Factory Build Data
  • Valuation
    • Valuation Basics
    • Valuation Predict
    • Residual Valuations
    • Max Offer Configuration
    • Gauge API
  • Embeddable Products
    • Embeddable Basics
    • Gauge Widget
    • Valuation Widget
    • Market Overlay Widget
  • REPORTS
    • Car Analysis
    • PPSR
    • Certificates
  • Customer Recapture
    • Customer Recapture API
    • Webhooks
  • Insurance
    • Pre-Accident Valuation (PAV)
    • AutoPAV
    • Repair Decision
  • AutoMate
    • AutoMate Usage Guidance
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 PredictNextMax 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: 122

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