| PUT | /api/v1/experience/configs/{configKey} | Store live config for Studio or game servers. |
| GET | /api/v1/experience/configs/{configKey} | Fetch stored config payload. |
| POST | /api/v1/cross-ban/check | Check moderation state for a Roblox user. |
| POST | /api/v1/cross-ban/bans | Create or update an active ban record. |
| GET | /api/v1/cross-ban/bans | List active ban records for the workspace. |
| DELETE | /api/v1/cross-ban/bans/{banId} | Revoke one active ban record. |
| GET | /api/v1/intel/users/{userId} | Read risk and policy metadata for a player. |
| PUT | /api/v1/vault/objects/{objectKey} | Store arbitrary JSON against the API key owner. |
| GET | /api/v1/vault/objects/{objectKey} | Read a stored JSON object. |
| DELETE | /api/v1/vault/objects/{objectKey} | Delete a stored JSON object. |
| POST | /api/v1/economy/signals | Archive an economy event and risk score. |
| POST | /api/v1/analytics/events | Store one or many player/session telemetry events. |
| GET | /api/v1/analytics/summary | Read event counts, unique users, sessions, and grouped event-type metrics. |
| GET | /api/v1/analytics/users/{userId}/events | List recent analytics events for one Roblox user. |
| DELETE | /api/v1/analytics/events/{eventId} | Delete one stored analytics event, mainly for cleanup or bad emits. |
| GET | /api/v1/flags | List feature flags, optionally filtered to enabled or disabled definitions. |
| GET | /api/v1/flags/{flagKey} | Read one feature flag definition and rollout configuration. |
| PUT | /api/v1/flags/{flagKey} | Create or replace a deterministic feature flag with variants and rollout percent. |
| DELETE | /api/v1/flags/{flagKey} | Delete one feature flag and its exposure records. |
| GET | /api/v1/flags/{flagKey}/assignments/{userId} | Get the deterministic variant assignment for one Roblox user. |
| POST | /api/v1/flags/{flagKey}/exposures | Record that a user saw or used an assigned variant. |
| GET | /api/v1/segments | List player segment definitions, optionally filtered by enabled state. |
| POST | /api/v1/segments/evaluate | Evaluate one player against selected manual and rule-based cohorts. |
| GET | /api/v1/segments/{segmentKey} | Read one player segment definition and active sample members. |
| PUT | /api/v1/segments/{segmentKey} | Create or replace a player segment with rules and metadata. |
| DELETE | /api/v1/segments/{segmentKey} | Delete one player segment and its member records. |
| PUT | /api/v1/segments/{segmentKey}/users/{userId} | Add or replace a manual member for one segment. |
| DELETE | /api/v1/segments/{segmentKey}/users/{userId} | Remove a manual member from one segment. |
| GET | /api/v1/leaderboards | List leaderboard definitions and entry counts. |
| GET | /api/v1/leaderboards/{boardKey} | Read one leaderboard definition. |
| PUT | /api/v1/leaderboards/{boardKey} | Create or replace a leaderboard definition. |
| DELETE | /api/v1/leaderboards/{boardKey} | Delete one leaderboard and all of its score entries. |
| GET | /api/v1/leaderboards/{boardKey}/top | Read ranked top entries for a board. |
| GET | /api/v1/leaderboards/{boardKey}/rank/{userId} | Read one player's current rank and score. |
| PUT | /api/v1/leaderboards/{boardKey}/scores/{userId} | Submit or update one player's score. |
| DELETE | /api/v1/leaderboards/{boardKey}/scores/{userId} | Delete one player's score entry. |
| GET | /api/v1/cooldowns | List cooldown rules and active state counts. |
| GET | /api/v1/cooldowns/{cooldownKey} | Read one cooldown rule definition. |
| PUT | /api/v1/cooldowns/{cooldownKey} | Create or replace a cooldown rule. |
| DELETE | /api/v1/cooldowns/{cooldownKey} | Delete one cooldown rule and its player states. |
| GET | /api/v1/cooldowns/users/{userId} | List active cooldown states for one Roblox user. |
| GET | /api/v1/cooldowns/{cooldownKey}/users/{userId} | Read whether one player can claim a cooldown. |
| POST | /api/v1/cooldowns/{cooldownKey}/users/{userId}/claim | Claim a cooldown if available or return the remaining seconds. |
| DELETE | /api/v1/cooldowns/{cooldownKey}/users/{userId} | Reset one player's cooldown state. |
| POST | /api/v1/trades/verify | Verify and score a player-to-player trade before finalization. |
| GET | /api/v1/trades/{tradeId} | Read a stored trade decision and item snapshot. |
| POST | /api/v1/receipts/verify | Verify and store a developer product receipt once. |
| GET | /api/v1/receipts/{receiptId} | Read a stored receipt ledger entry. |
| POST | /api/v1/entitlements/grant | Grant or update a mirrored pass, VIP flag, subscription, bundle, or cosmetic. |
| POST | /api/v1/entitlements/check | Check one or many entitlements for a player with optional scope matching. |
| GET | /api/v1/entitlements/users/{userId} | List mirrored entitlements for one Roblox user. |
| PUT | /api/v1/entitlements/users/{userId}/{entitlementId} | Upsert a specific scoped entitlement for one user. |
| DELETE | /api/v1/entitlements/users/{userId}/{entitlementId} | Revoke a specific scoped entitlement for one user. |
| GET | /api/v1/inventory/users/{userId} | List active player inventory items by type, equipped state, slot, or status. |
| GET | /api/v1/inventory/users/{userId}/items/{itemId} | Read one mirrored inventory item. |
| PUT | /api/v1/inventory/users/{userId}/items/{itemId} | Create or replace an item snapshot with quantity, attributes, metadata, and loadout state. |
| PATCH | /api/v1/inventory/users/{userId}/items/{itemId} | Update item quantity, equipped state, loadout slot, attributes, or metadata. |
| DELETE | /api/v1/inventory/users/{userId}/items/{itemId} | Remove one item from the active inventory snapshot. |
| GET | /api/v1/quests/templates | List reusable quest templates by season, cadence, tag, or active status. |
| GET | /api/v1/quests/templates/{templateKey} | Read one reusable quest template. |
| PUT | /api/v1/quests/templates/{templateKey} | Create or update a daily, weekly, seasonal, event, or custom quest template. |
| DELETE | /api/v1/quests/templates/{templateKey} | Deactivate one quest template. |
| POST | /api/v1/quests/assignments | Assign a template to a player with starter progress. |
| GET | /api/v1/quests/assignments/users/{userId} | List a player's quest assignments. |
| GET | /api/v1/quests/assignments/{assignmentId} | Read one quest assignment. |
| PATCH | /api/v1/quests/assignments/{assignmentId} | Update objective progress, status, metadata, or claimed rewards. |
| DELETE | /api/v1/quests/assignments/{assignmentId} | Delete one quest assignment. |
| GET | /api/v1/progression/users/{userId} | Fetch stored seasonal player progression. |
| PUT | /api/v1/progression/users/{userId} | Replace a player's seasonal progression profile. |
| PATCH | /api/v1/progression/users/{userId} | Apply quest, XP, streak, reward, or flag updates. |
| DELETE | /api/v1/progression/users/{userId} | Delete one seasonal progression profile. |
| POST | /api/v1/webhooks/events | Store live ops events for downstream delivery. |
| POST | /api/v1/live-messages/publish | Publish a short-lived message for game servers. |
| GET | /api/v1/live-messages/poll | Poll active messages by topic, universe, server, or timestamp. |
| GET | /api/v1/live-messages/{messageId} | Read one stored live message. |
| DELETE | /api/v1/live-messages/{messageId} | Revoke one active live message. |
| POST | /api/v1/matchmaking/tickets | Create a short-lived party ticket and optional match handoff. |
| GET | /api/v1/matchmaking/tickets | List matchmaking tickets by status, mode, or player. |
| GET | /api/v1/matchmaking/tickets/{ticketId} | Read one matchmaking ticket. |
| DELETE | /api/v1/matchmaking/tickets/{ticketId} | Cancel one matchmaking ticket. |
| POST | /api/v1/servers/heartbeat | Register or refresh a live game server directory entry. |
| GET | /api/v1/servers | List active servers by mode, region, universe, place, or status. |
| GET | /api/v1/servers/{serverId} | Read one live server directory entry. |
| DELETE | /api/v1/servers/{serverId} | Remove one server from the live directory. |
| GET | /api/v1/groups/{groupId}/policy | Read stored group policy and role sync configuration. |
| PATCH | /api/v1/groups/{groupId}/policy | Patch group policy and role sync configuration. |
| PUT | /api/v1/groups/{groupId}/policy | Replace group policy and role sync configuration. |
| POST | /api/v1/roblox/open-cloud/introspect | Verify a Roblox Open Cloud API key with Roblox. |