Ranker

The Ranker Endpoint allows you to programmatically manage rank promotions in your Roblox group via the Panora API. This endpoint is part of the Elite Plan features and requires a valid API key.

Endpoint URL

POST https://api.panora.cc/v1/ranker?placeid=<PLACE_ID>
  • placeid → The Roblox Place ID where the rank promotion is being triggered.


Headers

Header
Value
Required

Authorization

Bearer <YOUR_API_KEY>

✅ Yes

Content-Type

application/json

✅ Yes


Request Body

The request body must be a JSON object with the following fields:

Field
Type
Description

rankerName

string

Name of the user performing the rank action

rankerId

number

Roblox User ID of the ranker

rankeeName

string

Name of the user being promoted

rankeeId

number

Roblox User ID of the rankee

newRankId

number

ID of the new rank being assigned

command

string

Optional description or system name (e.g., “Points System”)

Example Request Body:


Example Usage in Roblox Lua

🔐 Tip: Replace "APIKEY" with your Elite Plan API key. Ensure your game is whitelisted in the Panora Dashboard.


Response

A successful response returns a JSON object confirming the rank promotion:

If the request fails, the API will return a descriptive error message with the appropriate HTTP status code.


Notes

  • Only one rank change per request is allowed.

  • Ensure the newRankId corresponds to a valid rank in your Roblox group.

  • Include the correct placeid to match your whitelisted game.

  • Always handle responses using pcall or equivalent error handling in Lua.

Last updated

Was this helpful?