> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get owned plates of local player

> Get all vehicle plates owned by the local player.

This export gets all the owned plates of **the local player**.

```lua Export theme={null}
local ownedPlates = exports["vehicles_keys"]:getOwnedVehiclePlates()
```

### Return

A table containing all the owned plates, with the following format:

```lua theme={null}
{
    ["ABC123"] = {
        type = "owned",
        model = -35726841
    },

    ["BCD473"] = {
        type = "temporary",
        model = -55726841
    },
}
```


## Related topics

- [Client](/vehicles-keys/client/index.md)
- [Get if local player owns a plate](/vehicles-keys/client/get-if-local-player-owns-a-plate.md)
- [Get if player ID owns a plate](/vehicles-keys/server/get-if-player-id-owns-a-plate.md)
- [Get if player is owner of vehicle plate](/jobs-creator/server/buyable-vehicles/get-if-player-is-owner-of-vehicle-plate.md)
- [Get if local player is handcuffed](/jobs-creator/client/actions/get-if-local-player-is-handcuffed.md)
