/v1/meta
Spec
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/quaver-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/quaver-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/quaver-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/quaver-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "user is a Quaver username (resolved via search) or a numeric id. mode is 4k (4-key) or 7k (7-key). performance_rating is Quaver's overall rating; ranks are global and within the player's country.",
"source": "Quaver public API (api.quavergame.com/v2, live)",
"service": "quaver-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/player": "Profile + 4K & 7K competitive stats for a user (user=Swan or user=1).",
"GET /v1/search": "Find players by name (query=swan).",
"GET /v1/leaderboard": "Global ranked ladder for a mode (mode=4k, page=0, limit=50)."
},
"description": "Live player and ranking data from Quaver, the competitive vertical-scrolling rhythm game (4K/7K keys). player resolves a user by id or username and returns the profile plus the full per-mode competitive stats for 4-key and 7-key (global/country rank, performance rating, overall accuracy, ranked & total score, play count and grade distribution). search finds players by name; leaderboard returns the global ranked ladder for a mode. Live, no key, nothing stored. A single-game competitive-community stats API distinct from the other rhythm-game and gaming-leaderboard APIs.",
"total_users": 885301,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:41:40.921Z",
"request_id": "d27c464c-56b0-4211-b568-cf479a009380"
},
"status": "ok",
"message": "Meta",
"success": true
}