POST
/
v1
/
vehicles
/
plate-search
Vehicle Plate Search
curl --request POST \
  --url https://api.partbot.io/v1/vehicles/plate-search \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "plate": "EOD67C",
  "state": "NSW"
}'
{
  "plate": {
    "number": "EOD67C",
    "state": "NSW"
  },
  "differing_attributes": [
    "body",
    "drivetrain"
  ],
  "vehicles": [
    {
      "description": "LDV T60 2021",
      "vehicle": {
        "make": "LDV",
        "model": "T60",
        "series": "SK8C",
        "variant": "",
        "body": null,
        "fuel_type": "Diesel",
        "drivetrain": null,
        "transmission": "",
        "engine": "SC28R150Q5",
        "engine_capacity": "2.8L",
        "cylinders": 4
      },
      "vehicle_ids": [
        "c51a15ae03",
        "1e15da54a4",
        "03f9e84ae2",
        "8ae6a6e467"
      ]
    }
  ],
  "vehicle_breakdown": [
    {
      "description": "LDV T60 SK8C 2021 2.8L Diesel",
      "vehicle": {
        "make": "LDV",
        "model": "T60",
        "series": "SK8C",
        "variant": "",
        "body": "Cab Chassis",
        "fuel_type": "Diesel",
        "drivetrain": "RWD",
        "transmission": "",
        "engine": "SC28R150Q5",
        "engine_capacity": "2.8L",
        "cylinders": 4
      },
      "vehicle_ids": [
        "c51a15ae03"
      ]
    },
    {
      "description": "LDV T60 SK8C 2021 2.8L Diesel",
      "vehicle": {
        "make": "LDV",
        "model": "T60",
        "series": "SK8C",
        "variant": "",
        "body": "Cab Chassis",
        "fuel_type": "Diesel",
        "drivetrain": "AWD",
        "transmission": "",
        "engine": "SC28R150Q5",
        "engine_capacity": "2.8L",
        "cylinders": 4
      },
      "vehicle_ids": [
        "1e15da54a4"
      ]
    },
    {
      "description": "LDV T60 SK8C 2021 2.8L Diesel",
      "vehicle": {
        "make": "LDV",
        "model": "T60",
        "series": "SK8C",
        "variant": "",
        "body": "Ute",
        "fuel_type": "Diesel",
        "drivetrain": "RWD",
        "transmission": "",
        "engine": "SC28R150Q5",
        "engine_capacity": "2.8L",
        "cylinders": 4
      },
      "vehicle_ids": [
        "03f9e84ae2"
      ]
    },
    {
      "description": "LDV T60 SK8C 2021 2.8L Diesel",
      "vehicle": {
        "make": "LDV",
        "model": "T60",
        "series": "SK8C",
        "variant": "",
        "body": "Ute",
        "fuel_type": "Diesel",
        "drivetrain": "AWD",
        "transmission": "",
        "engine": "SC28R150Q5",
        "engine_capacity": "2.8L",
        "cylinders": 4
      },
      "vehicle_ids": [
        "8ae6a6e467"
      ]
    }
  ],
  "factory_vehicle": {
    "make": "LDV",
    "model": "T60",
    "series": "SKC8",
    "variant": null,
    "year": 2021,
    "body": "Dual Cab Pick Up",
    "fuel_type": "Diesel",
    "drivetrain": null,
    "cylinders": 4,
    "engine_capacity": 2.8,
    "transmission": "Automatic"
  }
}

Headers

Authorization
string
required
Content-Type
string
required

Body

application/json
plate
string
required

Vehicle license plate number

state
string
required

Australian state code (e.g., NSW, VIC, QLD)

Response

200 - application/json

Vehicle plate search successful

plate
object

License plate information

differing_attributes
string[]

List of attributes that differ between vehicle variants

vehicles
object[]

Grouped vehicles by common attributes

vehicle_breakdown
object[]

Detailed breakdown of all vehicle variants

factory_vehicle
object

Original factory vehicle specifications