Μετάβαση στο περιεχόμενο
GET /v1/splatfest

Splatfests by region

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/splatoon-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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"
…