Skip to content
GET /v1/salmonrun

Salmon Run co-op schedules

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/splatoon-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}