Memorial Year Endpoint

Get all memorial days (days of remembrance) for a specific year.

Request

GET /memorial/year/{year}

Constraints: supported years 1583–4000.

Response

Data keyed by date. Each entry includes core calendar fields plus an events array containing only kind: "memorial" items.

{
  "meta": {
    "year": 2024,
    "from": "2024-01-01",
    "to": "2024-12-31",
    "count": 7,
    "lang": "ru"
  },
  "data": {
    "2024-03-09": {
      "gregorianDate": "2024-03-09",
      "julianDate": "2024-02-25",
      "dayOfWeek": "Суббота",
      "events": [
        {
          "kind": "memorial",
          "id": "meatfare_saturday",
          "label": "Вселенская родительская суббота (мясопустная)"
        }
      ]
    }
  }
}

Example (JavaScript)

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