Manage

Authentication

Every API request is authenticated with an API key. Create one in the dashboard under Workspace → API Keys. The raw key (prefixed mng_) is shown once at creation, so store it somewhere safe.

Authorization header

Pass the key as a bearer token on every request:

http
Authorization: Bearer mng_your_api_key

Key types

Each key has a type that limits what it can do. A request with the wrong type returns 403.

TypeAllows
mediaUpload image, video, and audio files
imagesUpload image files only
videosUpload video files only
audioUpload audio files only
logsSend log events

Keys are secrets. Use them only from your server (e.g. a FiveM server-side script), never from a game client or browser.