/v1/meta
Usage notes
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}