API Key

The API Key Endpoint allows you to verify whether an Elite Plan API key is valid and whether a Roblox game is whitelisted for use with Panora services. This is essential for secure integrations.

Endpoint URL

POST https://api.panora.cc/v1/apikey

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 containing:

Field
Type
Description

placeid

number

The Roblox Place ID of the game you want to verify

Example Request Body:

{
  "placeid": 12345678
}

Example Usage in Roblox Lua

🔐 Tip: Replace "APIKEY" with your Elite Plan API key. Only whitelisted games will return a valid workspace ID.


Response

Success – 200 OK

Returns the workspace ID associated with the API key if the key is valid and the game is whitelisted:

Errors

Status Code
Reason
Description

400

Missing placeid

The request did not include placeid.

401

Missing or invalid Authorization header

The API key is missing or malformed.

401

Invalid API Key

The provided API key does not match any Elite workspace.

403

Place not whitelisted

The game (Place ID) is not whitelisted for this API key.

500

Internal Server Error

Unexpected server-side error.


Notes

  • The API key must be from an active Elite Plan workspace.

  • The game’s Place ID must be whitelisted and active.

  • Use this endpoint to confirm integration before triggering rank changes, applications, or other API features.

Last updated

Was this helpful?