> For the complete documentation index, see [llms.txt](https://documentation.jaksam-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.jaksam-scripts.com/vehicles-keys/client/get-owned-plates-of-local-player.md).

# Get owned plates of local player

This export can be get all the owned plates of **the local player**

## Export

<pre class="language-lua"><code class="lang-lua"><strong>local ownedPlates = exports["vehicles_keys"]:getOwnedVehiclePlates()
</strong></code></pre>

### Return

A table containing all the owned plates with the following format

```lua
{
    ["ABC123"] = {
        type = "owned",
        model = -35726841
    },
    
    ["BCD473"] = {
        type = "temporary",
        model = -55726841
    },
}
```
