/v1/schedules
Battle rotations for a mode
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/splatoon-api/v1/schedules" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/splatoon-api/v1/schedules", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/splatoon-api/v1/schedules");
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/schedules",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"mode": "regular",
"count": 12,
"current": {
"end": "2026-06-01T10:00:00Z",
"rule": "Turf War",
"start": "2026-06-01T08:00:00Z",
"stages": [
{
"id": "VnNTdGFnZS0xNg==",
"name": "Wahoo World",
"image": "https://splatoon3.ink/assets/splatnet/v3/stage_img/icon/low_resolution/61ea801fa4ed32360dcaf83986222ded46a72dbf56194acc6d0cf4659a92ba85_1.png"
},
{
"id": "VnNTdGFnZS0yNA==",
"name": "Lemuria Hub",
"image": "https://splatoon3.ink/assets/splatnet/v3/stage_img/icon/low_resolution/2ba481293efc554ac217f21b6d56dd08f9d66e72b286f20714abd5ef1520f47a_1.png"
}
]
},
"schedules": [
{
"end": "2026-06-01T10:00:00Z",
"rule": "Turf War",
"start": "2026-06-01T08:00:00Z",
"stages": [
{
"id": "VnNTdGFnZS0xNg==",
"name": "Wahoo World",
"image": "https://splatoon3.ink/assets/splatnet/v3/stage_img/icon/low_resolution/61ea801fa4ed32360dcaf83986222ded46a72dbf56194acc6d0cf4659a92ba85_1.png"
},
{
"id": "VnNTdGFnZS0yNA==",
"name": "Lemuria Hub",
"image": "https://splatoon3.ink/assets/splatnet/v3/stage_img/icon/low_resolution/2ba481293efc554ac217f21b6d56dd08f9d66e72b286f20714abd5ef1520f47a_1.png"
}
]
},
{
"end": "2026-06-01T12:00:00Z",
"rule": "Turf War",
"start": "2026-06-01T10:00:00Z",
"stages": [
{
"id": "VnNTdGFnZS0y",
"name": "Eeltail Alley",
"image": "https://splatoon3.ink/assets/splatnet/v3/stage_img/icon/low_resolution/898e1ae6c737a9d44552c7c81f9b710676492681525c514eadc68a6780aa52af_1.png"
},
{
"id": "VnNTdGFnZS0xMA==",
"name": "Hammerhead Bridge",
"image": "https://splatoon3.ink/assets/splatnet/v3/stage_img/icon/low_resolution/1db8ab338b64b464df50e7f9e270e59423ff8caac6f09679a24f1b7acf3a82f3_1.png"
}
]
},
{
"end": "2026-06-01T14:00:00Z",
"rule": "Turf War",
"start": "2026-06-01T12:00:00Z",
"stages": [
{
"id": "VnNTdGFnZS0z",
"name": "Hagglefish Market",
"image": "https://splatoon3.ink/assets/splatnet/v3/stage_img/icon/low_resolution/8dc2f16d39c630bab40cead5b2485ca355
…