Aller au contenu
GET /v1/game

Experience live stats

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/roblox-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}