Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/roblox-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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