Zum Inhalt springen
GET /v1/movable-feasts

Easter-relative feasts

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/easter-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}