Check Plate
This endpoint allows you to check a plate.
This endpoint requires any ImperialCAD subscription.
CheckPlate(data, callback)
POST https://imperialcad.app/api/1.1/wf/checkplate
Request Body
Name
Type
Description
plate
string
License Plate
exports["ImperialCAD"]:CheckPlate({
plate = "XYZ123"
}, function(success, res)
if success then
local result = json.decode(res)
print("Plate Registered To: " .. result.response.owner)
else
print("Failed to check plate.")
end
end){
"status": "success",
"response": {
"owner": "John Doe",
"plate_number": "XYZ123",
"stolen": false,
"insurance": true,
"insurance_status": "Active",
"business": false,
"reg_status": "Valid"
}
}Last updated
Was this helpful?