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

Registration Status

Find a vehicle's registration status.

PreviousRegistration Plate SearchNextVIN Search

Last updated 6 months ago

Was this helpful?

To retrieve the registration status & write-off information for a given vehicle, you can call the status endpoint.

Australia

In Australia, merely call the /v2/vehicles/{number_plate}/status endpoint with region=au. You must send the state in its short format, you can use the long format for front-end purposes if you require. Refer to the Australian state table under the Registration Search heading in this guide for a list.

Get a vehicle's registration status

get

Get a vehicle's registration status

Authorizations
Path parameters
plate_numberstringRequired

Plate number of the vehicle

Query parameters
regionstringOptional
statestringOptional

State is used in the AU region to narrow down a numberplate

Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
get
GET /v2/vehicles/registrations/{plate_number}/status HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "plate_number": "text",
  "state": "text",
  "vin": "text",
  "registration_status": "text",
  "registration_expiry": "text",
  "manufacture_year": 1,
  "compliance_plate": "text",
  "incidents": [
    {
      "type_code": "text",
      "state": "text",
      "recorded_date": "text",
      "code": "text",
      "damage_codes": "text"
    }
  ]
}