Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/N3XT3R1337/RiftCE/llms.txt

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

The account endpoints let you inspect the state of the Rift CE server and retrieve account data. GET /running is a no-auth health check. GET /getaccounts returns the full account list. GET /getcookie retrieves the raw .ROBLOSECURITY cookie for a single account — a sensitive operation gated by its own permission flag.

GET /running

Returns the server status, version string, and total number of accounts in the vault. This endpoint requires no authentication and accepts no parameters. Use it to verify the server is reachable before issuing further requests.

Response fields

running
boolean
required
Always true when the server is responding. If the server is not running, the connection will be refused before this field is ever returned.
version
string
required
The Rift CE application version string.
accounts
number
required
Total count of accounts currently loaded in the vault.

Example

curl http://localhost:7963/running

GET /getaccounts

Returns a JSON array of all accounts managed by Rift CE. Each object contains the account’s public metadata and live status. Raw cookies are not included in this response — use GET /getcookie if you need them. Permission required: WebServerAllowGetAccounts (enabled by default)

Response fields (per account)

Username
string
required
The Roblox username for this account.
UserId
number
required
The Roblox numeric user ID.
Group
string
required
The group this account is assigned to. Empty string if unassigned.
Alias
string
required
The display-name alias set on this account. Empty string if no alias is set.
Status
string
required
Live session status. One of: "Offline", "Online", "InGame", "InStudio". Resolved at runtime — not persisted to disk.
LastUsed
string
required
ISO 8601 datetime string of the last time this account was launched.

Example

curl -H "X-Rift-Password: yourpassword" \
  http://localhost:7963/getaccounts

GET /getcookie

Returns the raw .ROBLOSECURITY cookie stored for a single account. Permission required: WebServerAllowGetCookie (disabled by default)
Enable this permission only if your automation absolutely requires direct cookie access. The .ROBLOSECURITY cookie grants full authenticated access to the Roblox account — treat it as a secret and never log or transmit it over untrusted channels.

Parameters

Account
string
required
The Roblox username of the account whose cookie you want to retrieve. Must match exactly (case-insensitive lookup is used internally).

Response fields

The .ROBLOSECURITY cookie value as stored in the vault. The _|WARNING prefix is stripped at import time, so the stored value is the raw token without any prefix.

Example

curl -H "X-Rift-Password: yourpassword" \
  "http://localhost:7963/getcookie?Account=BuilderBob"

Build docs developers (and LLMs) love