/v1/movable-feasts
Easter-relative feasts
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/easter-api/v1/movable-feasts" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/easter-api/v1/movable-feasts", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/easter-api/v1/movable-feasts");
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/easter-api/v1/movable-feasts",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Western movable feasts as offsets from Easter Sunday: Ash Wednesday −46, Palm Sunday −7, Good Friday −2, Ascension +39, Pentecost +49, Corpus Christi +60.",
"inputs": {
"year": 2025
},
"ascension": "2025-05-29",
"pentecost": "2025-06-08",
"good_friday": "2025-04-18",
"palm_sunday": "2025-04-13",
"ash_wednesday": "2025-03-05",
"easter_sunday": "2025-04-20",
"corpus_christi": "2025-06-19",
"maundy_thursday": "2025-04-17"
},
"meta": {
"timestamp": "2026-06-05T19:50:21.902Z",
"request_id": "81e881f5-c6d5-4e60-a843-d210ac65277e"
},
"status": "ok",
"message": "Movable feasts",
"success": true
}