/v1/splatfest
Splatfests by region
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/splatfest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/splatoon-api/v1/splatfest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/splatoon-api/v1/splatfest");
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/splatfest",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 10,
"active": null,
"region": "EU",
"festivals": [
{
"id": "RmVzdC1FVTpKVUVBLTAwMTA2",
"end": "2026-04-13T00:00:00Z",
"start": "2026-04-11T00:00:00Z",
"state": "CLOSED",
"teams": [
{
"name": "Baby Chicks",
"color": "rgba(162,204,65)"
},
{
"name": "Li'l Bunnies",
"color": "rgba(235,117,156)"
},
{
"name": "Bear Cubs",
"color": "rgba(81,209,200)"
}
],
"title": "It's spring! A time for fuzzy fluffiness!"
},
{
"id": "RmVzdC1FVTpKVUVBLTAwMTA1",
"end": "2026-01-12T00:00:00Z",
"start": "2026-01-10T00:00:00Z",
"state": "CLOSED",
"teams": [
{
"name": "Friends",
"color": "rgba(61,98,199)"
},
{
"name": "Family",
"color": "rgba(179,132,23)"
},
{
"name": "Solo",
"color": "rgba(239,219,171)"
}
],
"title": "Who do you spend the holidays with?"
},
{
"id": "RmVzdC1FVTpKVUVBLTAwMTA0",
"end": "2025-10-27T00:00:00Z",
"start": "2025-10-25T00:00:00Z",
"state": "CLOSED",
"teams": [
{
"name": "Zombie",
"color": "rgba(12,163,75)"
},
{
"name": "Skeleton",
"color": "rgba(176,79,35)"
},
{
"name": "Ghost",
"color": "rgba(150,73,150)"
}
],
"title": "Which would be the best friend?"
},
{
"id": "RmVzdC1FVTpKVUVBLTAwMTAz",
"end": "2025-07-14T00:00:00Z",
"start": "2025-07-12T00:00:00Z",
"state": "CLOSED",
"teams": [
{
"name": "Land",
"color": "rgba(233,238,57)"
},
{
"name": "Sea",
"color": "rgba(49,178,233)"
},
{
"name": "Air",
"color": "rgba(219,50,231)"
}
],
"title"
…