/v1/game
Experience live stats
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/roblox-api/v1/game" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/roblox-api/v1/game", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/roblox-api/v1/game");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/roblox-api/v1/game",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"name": "Blox Fruits",
"genre": "Adventure",
"visits": 61994382169,
"created": "2019-01-16T03:29:19.433Z",
"creator": {
"name": "Gamer Robot Inc",
"type": "Group",
"verified": true
},
"playing": 230695,
"updated": "2026-06-03T16:09:24.821Z",
"game_url": "https://www.roblox.com/games/2753915549",
"up_votes": 12182186,
"favorites": 19058536,
"down_votes": 1041297,
"description": "Welcome to Blox Fruits! Become a master swordsman or a powerful blox fruit user as you train to become the strongest player to ever live. You can choose to fight against tough enemies or have powerful boss battles while sailing across the ocean to find hidden secrets. Current level cap: 2800 Current fruits in the game: Rocket, Spin, Blade, Spring, Bomb, Smoke, Spike, Flame, Ice, Sand, Dark, Eagle,",
"max_players": 12,
"universe_id": 994732206,
"root_place_id": 2753915549,
"like_ratio_pct": 92.1
},
"meta": {
"timestamp": "2026-06-09T03:02:25.494Z",
"request_id": "aaa40558-ba64-40d6-b5f2-d9681cdc0df6"
},
"status": "ok",
"message": "Game retrieved successfully",
"success": true
}