Get Player Queue

Retrieve the ER:LC queue.

GET https://api.sonorancms.com/v2/community/erlc/players/queue

Rate limit: 27 requests per minute

Authenticated v2 endpoints are rate limited per credential rather than per IP address.

Retrieve the ER:LC queue.

Query Parameters

| Name | Type | Required | Description |

| --- | --- | --- | --- |

| robloxJoinCode | string | Yes | See example request for the shape. |

Example Request

local Sonoran = require("sonoran")

local sonoran = Sonoran.createClient({
  product = Sonoran.productEnums.CMS,
  apiKey = "YOUR_API_KEY",
  communityId = "YOUR_COMMUNITY_ID",
  defaultServerId = 1,
  timeoutMs = 30000,
})

local query = {
  ["robloxJoinCode"] = "ABC123"
}

local response = sonoran.cms:getPlayerQueueV2(query)

if response.success then
  print(response.data)
else
  print(response.reason)
end

Response

The data value is the current queue length for the target server, not the queue entries themselves.

Last updated

Was this helpful?