/v1/game
Experience live stats
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}