Vai al contenuto
GET /v1/movable-feasts

Easter-relative feasts

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/easter-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}