Movable Day Endpoint
Check if a specific date contains movable feast / event / saint / icon_of_mother_of_god / week / memorial entries.
Request
GET /movable/day/{date}
Constraints: supported years 1583–3000.
Response
{
"meta": {
"from": "2026-02-28",
"to": "2026-02-28",
"count": 1,
"lang": "ru"
},
"data": {
"2026-02-28": {
"gregorianDate": "2026-02-28",
"julianDate": "2026-02-15",
"dayOfWeek": "Суббота",
"events": [
{
"kind": "saint",
"id": "theodore_tyron_saturday_first_week_lent",
"label": "Вмч. Феодора Тирона (переходящее празднование в субботу 1-й седмицы Великого поста)",
"description": ""
},
{
"kind": "week",
"id": "first_week_lent",
"dateFrom": "2026-02-23",
"dateTo": "2026-02-28",
"label": "Седмица 1-я Великого поста. Торжество Православия"
}
]
}
}
}
Example (JavaScript)
fetch(`https://api.ispovednik.org/api/v1/movable/day/2026-02-28?lang=en`)
.then(response => response.json())
.then(data => console.log(data));