Claims Repair History Data
The Claims and Repairs Data API can be used to query for the availability of claim repair history data for a particular plate/jurisdiction or VIN. The full claim repair history data can also be fetched (when available) by specifying the required reportType.
For example, sending a GET request to /v1/claims-repairs?vin=ABCDEFG1234567890&reportType=flag fetches the base response, providing basic plate and VIN information and indicating whether there is any claims/repairs data available.
Sending a GET request to /v1/claims-repairs?vin=ABCDEFG1234567890&reportType=full will fetch the base response, as well as the full actual claim repair data in the claimList array, if available.
If no claim repair data is available when the reportType=fullis specified then it will be charged as a reportType=flagrequest.
An additional nevdis_data data pack can be requested that will include the year, make and model information from NEVDIS within the base response.
Base URL
Retrieves claims repair data for a vehicle in Australia using either plate/state or VIN
Registration plate of the vehicle
Registration state of the vehicle
VIN (Vehicle Identification Number) of the vehicle
WAUZZZ8T6GA024434Type of data pack to return
Type of report to return (full report or flag indicators only)
Successfully retrieved claims repair data
Bad Request / Validation Failed
Vehicle cannot be found
Unknown error on the service side
GET /v1/claims-repairs?reportType=full HTTP/1.1
Host:
Accept: */*
{
"vehicle": {
"plate": "ABC123",
"state": "VIC",
"vin": "WAUZZZ8T6GA024434",
"year": 2015,
"make": "Audi",
"model": "A5",
"repairAvailable": true,
"claimList": [
{
"accidentDate": "2018-10",
"assessment": {
"damageGroupsList": [
"04: Exterior body parts"
],
"damagePositionList": [
"05: Front, Right Side, Middle"
],
"currency": "AUD",
"damageValueLow": 3000,
"damageValueHigh": 3500
},
"creation": "2018-10",
"damage": {
"general": {
"front": true,
"frontLeft": true,
"frontRight": true,
"interior": true,
"mechanical": true,
"rear": true,
"rearLeft": true,
"rearRight": true,
"roof": true,
"sideLeft": true,
"sideRight": true,
"underbody": true
},
"glass": {
"front": true,
"rear": true,
"roof": true,
"sideLeft": true,
"sideRight": true
}
}
}
]
}
}Example URL
https://api.tst.motorweb.app/claims-repairs-data/v1/claims-repairs?plate=ABC123&state=VIC&reportType=full&dataPack=nevdis_data
Last updated