# VIN Export

* You can use the following client export to verify if a vehicle have the VIN scratched:

```lua
-- This example is for a simple command without a job check
RegisterCommand('searchvin', function()
    local res = exports['av_boosting']:getVin()
    if res then
        print('VIN number modified')
    else
        print('This is a legal vehicle')
    end
end)
```
