ServerOps.ggbeta
Developers

Developer Guides

In-depth API guides for developers integrating ServerOps into their applications.

Developer Guides

These guides cover the ServerOps API in depth. If you are building a custom integration, SDK, or automation tool, start here.

Guides

API reference

The full interactive API reference is at /docs/api-reference. Every endpoint includes live request examples in FiveM Lua, Roblox Luau, Oxide C#, and Paper Java, plus cURL.

Base URL

https://api.serverops.gg/v1

All endpoints are versioned under /v1. The API returns JSON for all responses.

Quick start

# 1. Create a token at serverops.gg/dashboard/tokens

# 2. Upload a file
curl -X POST https://api.serverops.gg/v1/media \
  -H "Authorization: Bearer so_live_..." \
  -F "[email protected]"

# 3. Response includes a CDN URL
# {"id":"...","url":"https://cdn.serverops.gg/...","..."}

On this page