/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/roblox-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/roblox-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/roblox-api/v1/meta");
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/meta",
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": {
"source": "Roblox public web APIs (live)",
"service": "roblox-api",
"endpoints": {
"GET /v1/game": "Experience live stats (universeId=994732206 or placeId=).",
"GET /v1/meta": "This document.",
"GET /v1/user": "User profile + social counts (username=builderman or id=156)."
},
"description": "Live Roblox profile and game stats: look up any user by username or id (display name, description, account age, verified/banned flags, plus friends/followers/followings counts) and any experience by universe id or place id (players online now, all-time visits, favourites, up/down votes and like ratio, max players, genre and creator). Live, no key. Distinct from store-catalogue gaming APIs — this is live Roblox community and engagement data.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:25.715Z",
"request_id": "3a42296e-56ad-48f3-992a-0c58c3f97fba"
},
"status": "ok",
"message": "Meta",
"success": true
}