๐Ÿ“ธGetting Your FiveManage API Key

circle-info

Rentals V2 uses an image API to handle in-game vehicle photos. You don't have to use FiveManage however, it is what we recommend. It's one of the most popular and completely free APIs available for this right now, making it the easiest option to get up and running quickly.

Follow the steps below to get your FiveManage API key and drop it into your config.

1

Create a FiveManage account

Head over to fivemanage.comarrow-up-right and sign up for a free account if you don't already have one.

2

Go to your Dashboard

Once logged in, navigate to your Dashboard and open the Media section from the sidebar.

3

Create a new resource

Click Create Resource, give it a name (e.g. rentals), and set the type to Image.

4

Copy your API key

After creating the resource, you'll be given an Authorization Key. Copy it โ€” you'll need this for the next step.

5

Paste it into your config

Open your config.lua and paste your key into the apiKey field:

Config.Screenshot = {
    url      = 'https://api.fivemanage.com/api/image', -- FiveManage upload endpoint
    apiKey   = 'YOUR_KEY_HERE',                         -- Paste your key here
    encoding = "webp",                                  -- Image encoding: "webp" | "jpg" | "png"
}

โš ๏ธ Keep your API key private Never share your FiveManage API key publicly. It gives access to your media storage. If it gets leaked, regenerate it immediately from your FiveManage dashboard.

Last updated