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.
Important: Only work with whitelisted games and authorized API keys. Misuse can lead to failed requests or security issues.
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
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:
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
newRankIdcorresponds to a valid rank in your Roblox group.Include the correct
placeidto match your whitelisted game.Always handle responses using
pcallor equivalent error handling in Lua.
Last updated
Was this helpful?