/v1/meta
Usage notes
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/splatoon-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/splatoon-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/splatoon-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/splatoon-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": {
"note": "Splatoon 3 live game data. /v1/schedules?mode=regular = the current and upcoming battle rotations for a mode (regular = Turf War, bankara-open & bankara-challenge = Anarchy, x = X Battle) with the rule and stages; /v1/salmonrun = the Salmon Run co-op schedules (stage, the four supplied weapons, boss); /v1/gear = the SplatNet (Gesotown) gear shop — the pickup-brand gear and the daily limited gear with price, brand, primary ability and slots; /v1/splatfest?region=EU = the current and upcoming Splatfests for a region (US, EU, JP, AP) with teams. Times are ISO 8601 UTC. Unofficial; data via splatoon3.ink, a community project (not affiliated with Nintendo).",
"source": "splatoon3.ink (Splatoon 3 live data)",
"endpoints": [
"/v1/schedules",
"/v1/salmonrun",
"/v1/gear",
"/v1/splatfest",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T08:13:40.333Z",
"request_id": "10096285-aba5-4b29-9433-a75925ab8ad3"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}