Movable Year Endpoint

Get all movable feasts for a specific year.

Request

GET /movable/year/{year}

Parameters:

Parameter Type In Description
year integer path Year in YYYY format.
lang string query ru (default) or en.

Constraints: supported years 1583–3000.

Response

Returns a sparse map keyed by date (YYYY-MM-DD) for all days in the year that have at least one movable/memorial/week event.

Each entry contains:

{
  "meta": {
    "year": 2025,
    "from": "2025-01-01",
    "to": "2025-12-31",
    "count": 50,
    "lang": "ru"
  },
  "data": {
    "2025-04-20": { /* ... */ }
  }
}

Example (JavaScript)

fetch(`https://api.ispovednik.org/api/v1/movable/year/2024?lang=en`)
  .then(response => response.json())
  .then(data => console.log(data));