/v1/salmonrun
Salmon Run co-op schedules
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/splatoon-api/v1/salmonrun" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/splatoon-api/v1/salmonrun", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/splatoon-api/v1/salmonrun");
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/salmonrun",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 5,
"current": {
"end": "2026-06-02T16:00:00Z",
"boss": "Megalodontia",
"stage": "Salmonid Smokeyard",
"start": "2026-06-01T00:00:00Z",
"weapons": [
"Slosher",
"Dynamo Roller",
"Splash-o-matic",
"Wellstring V"
],
"king_salmonid": "Megalodontia"
},
"schedules": [
{
"end": "2026-06-02T16:00:00Z",
"boss": "Megalodontia",
"stage": "Salmonid Smokeyard",
"start": "2026-06-01T00:00:00Z",
"weapons": [
"Slosher",
"Dynamo Roller",
"Splash-o-matic",
"Wellstring V"
],
"king_salmonid": "Megalodontia"
},
{
"end": "2026-06-04T08:00:00Z",
"boss": "Cohozuna",
"stage": "Spawning Grounds",
"start": "2026-06-02T16:00:00Z",
"weapons": [
"Mint Decavitator",
"Bloblobber",
"Carbon Roller",
"E-liter 4K"
],
"king_salmonid": "Cohozuna"
},
{
"end": "2026-06-06T00:00:00Z",
"boss": "Horrorboros",
"stage": "Gone Fission Hydroplant",
"start": "2026-06-04T08:00:00Z",
"weapons": [
"Octobrush",
"Clash Blaster",
"Splat Brella",
"Classic Squiffer"
],
"king_salmonid": "Horrorboros"
},
{
"end": "2026-06-07T16:00:00Z",
"boss": "Megalodontia",
"stage": "Bonerattle Arena",
"start": "2026-06-06T00:00:00Z",
"weapons": [
"Undercover Brella",
"Aerospray MG",
"Douser Dualies FF",
"Rapid Blaster"
],
"king_salmonid": "Megalodontia"
},
{
"end": "2026-06-09T08:00:00Z",
"boss": "Cohozuna",
"stage": "Jammin' Salmon Junction",
"start": "2026-06-07T16:00:00Z",
"weapons": [
"Mini Splatling",
"L-3 Nozzlenose",
"Splattershot Nova",
"Goo Tuber"
],
"king_salmonid": "Cohozuna"
}
]
},
"meta": {
"timestamp": "2026-06-01T08:13:39.677Z",
"request_id": "295ef2c2-d45a-4e9d-b0a4-36a09b76e00e"
},
"status": "ok",
"message": "Salmon Run retrieved",
"success": true
}