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
Authentication
Token scopes, security best practices, and how to handle 401 errors.
Error handling
The error envelope format, all error codes, and how to handle them in your code.
Rate limits and quotas
Burst and sustained rate limits, quota errors, and how to implement backoff.
Media uploads
Uploading files with multipart/form-data, base64 JSON, size limits, and supported types.
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/v1All 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/...","..."}