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 Search

Upstream Vehicle Search

Access registration authority information to get unmatched vehicle data from a plate or VIN.

PreviousVehicle ID SearchNextMarketplace ID Lookup

Last updated 6 months ago

Was this helpful?

The Upstream API allows you to search for registration authority information by registration plate or VIN. You will receive back what the vehicle is registered as with varying structured data that the authority holds.

You can request information on anything with a registration plate, which means motorbikes, caravans, trucks and so on.

Importantly you will not receive a vehicle ID with these responses as we only maintain a catalogue for passenger vehicles. We are unable to match other vehicles like motorbikes or heavy trucks and are therefore unable to provide additional functions like valuation.

The request requires only a region, vin or registration plate and state plus an API key.

You will not receive a vehicle ID with your response.

Example

{
    "success": true,
    "payload": {
        "vin": "KMHLC41DMCU016619",
        "year": "2012",
        "make": "Hyundai",
        "model": "i40",
        "badge": "VF",
        "series": "Premium",
        "fuel_type": "91 RON ULP",
        "body_style": "Sedan",
        "transmission": "6 auto",
        "capacity_cc": "2000",
        "colour": "Grey",
        "title": "2012 Hyundai VF i40 Premium 4 Sedan 6sp auto 2.0L 2000cc 4cyl Petrol 2012"
    }
}

Get upstream vehicle data using a VIN

get

Get upstream vehicle data using a VIN

Authorizations
Path parameters
vinstringRequired

Plate number of the registered vehicle

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
get
GET /v2/vehicles/vins/{vin}/upstream HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "payload": {
    "title": "text",
    "year": 1,
    "make": "text",
    "model": "text",
    "badge": "text",
    "series": "text",
    "body_type": "text",
    "body_config": "text",
    "transmission": "text",
    "wheelbase": "text",
    "fuel": "text",
    "engine": "text",
    "drive": "text",
    "num_doors": 1
  }
}
  • GETGet upstream vehicle data using a VIN
  • Example