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. Vehicle Data

Factory Build Data

Request data the vehicle was fitted with at the factory

PreviousVehicle HistoryNextValuation Basics

Last updated 3 months ago

Was this helpful?

Overview

To request an extensive factory build data list call the /build-data endpoint. If the relevant manufacturer is participating in our Options data product you will see it in the response.

If we are unable to provide build information for the requested VIN we will return an error like this.

{
    "error": true,
    "message": "Invalid or Unsupported VIN"
}

If you are not using a valid VIN we will respond with this.

{
    "error": true,
    "message": "Invalid VIN, must be 17 characters."
}

Coverage

The Factory build data program covers most major manufacturers back to vehicles built in 1999. Contact us to request if we have coverage of a specific area.

As of 2023 the system has coverage across 40 manufacturers as below:

  • Abarth

  • Alfa Romeo

  • Alpina

  • Audi

  • BMW

  • Buick

  • Cadillac

  • Chevrolet

  • Chrysler

  • Citroën

  • Dacia

  • Daewoo

  • Dodge

  • DS

  • Fiat

  • Ford

  • GMC

  • Hummer

  • Hyundai

  • Isuzu

  • Jaguar

  • Jeep

  • KIA

  • Lancia

  • Land Rover

  • Lincoln

  • Maybach

  • Mercedes-Benz

  • MINI, Opel

  • Porsche

  • Peugeot

  • Renault

  • Rolls-Royce

  • Saab

  • SEAT

  • Skoda

  • smart

  • Vauxhall

  • Volkswagen

  • Volvo

For basic fittable options, that is the options packs available on the vehicle refer to the specifications or endpoints.

vehicle
get
Authorizations
Path parameters
vinstringRequired

The VIN number that is used to look up the vehicle build data

Query parameters
regionstring · enumOptional

The region to perform this request in

Possible values:
reference_idstringOptional

An optional reference id which will be stored against usage records if supplied

Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
GET /v2/vehicles/vins/{vin}/build-data HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "vehicle": {
    "vin": "text",
    "build_date": "text",
    "make": "text",
    "model": "text",
    "features": [
      {
        "code": "text",
        "value": "text"
      }
    ]
  }
}
  • Overview
  • GET/v2/vehicles/vins/{vin}/build-data
  • Coverage