Skip to main content
GET
/
v1
/
server
/
staff
Fetch a list of the server's staff (mods + admins)
curl --request GET \
  --url https://api.erlc.gg/v1/server/staff \
  --header 'server-key: <api-key>'
{
  "CoOwners": [
    123
  ],
  "Admins": {
    "54249787": "Black_Hallow",
    "77573259": "sli_ckk"
  },
  "Mods": {
    "2": "JohnDoe",
    "3": "JaneDoe"
  }
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.erlc.gg/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

server-key
string
header
required

REQUIRED ON ALL REQUESTS. Get your server key at https://erlc.link/sk

Response

Server Staff

CoOwners
integer[]

List of Roblox user IDs who are co-owners of the server

Admins
object

Map of Roblox user IDs (numeric string keys) to usernames for server administrators

Example:
{
  "54249787": "Black_Hallow",
  "77573259": "sli_ckk"
}
Mods
object

Map of Roblox user IDs (numeric string keys) to usernames for server moderators

Example:
{ "2": "JohnDoe", "3": "JaneDoe" }