seasons: Get available seasons

API: myanimelist.net:myanimelist-api
Endpoint: /seasons
Response format: application/json
Auth: oauth2
Method: GET
Last Status: 200
Latency: 252ms

Description

Returns available anime seasons from 1917 to present, with each year containing the four standard seasons (winter, spring, summer, fall). Use this to discover which years/seasons have anime data available before querying specific season endpoints.

From spec: Get a list of all available anime seasons by year.

Usage Tips

- No pagination required, returns complete history - Each year contains ['winter','spring','summer','fall'] - Use year and season values to construct URLs for /seasons/{year}/{season}

Examples (1)

Get available anime seasons probe-gate

Retrieves a complete historical list of years and seasons that have anime data available.

curl 'https://api.jikan.moe/v4/seasons'
import requests

resp = requests.get("https://api.jikan.moe/v4/seasons")
data = resp.json()
import zingu_apis

api = zingu_apis.api("myanimelist")
result = api.fetch("seasons")

for item in result:
    print(item)
const resp = await fetch("https://api.jikan.moe/v4/seasons");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 00:54:17.311511 200 252ms
2026-04-15 02:43:23.739334 504 205ms
2026-04-14 03:08:07.339713 200 250ms
2026-04-12 14:10:02.042584 200 172ms
2026-04-10 00:09:59.333497 200 240ms
2026-04-09 03:14:08.790899 200 246ms