Skip to content
GET /v1/calendars

Today's daily-learning calendar

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/sefaria-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/sefaria-api/v1/calendars" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sefaria-api/v1/calendars", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sefaria-api/v1/calendars");
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/sefaria-api/v1/calendars",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "date": "2026-06-07",
        "items": [
            {
                "ref": "Numbers 13:1-15:41",
                "title": "Parashat Hashavua",
                "value": "Sh'lach",
                "category": "Tanakh",
                "hebrew_title": "פרשת השבוע",
                "hebrew_value": "שלח"
            },
            {
                "ref": "Joshua 2:1-24",
                "title": "Haftarah",
                "value": "Joshua 2:1-24",
                "category": "Tanakh",
                "hebrew_title": "הפטרה",
                "hebrew_value": "יהושע ב׳:א׳-כ״ד"
            },
            {
                "ref": "Chullin 38",
                "title": "Daf Yomi",
                "value": "Chullin 38",
                "category": "Talmud",
                "hebrew_title": "דף יומי",
                "hebrew_value": "חולין ל״ח"
            },
            {
                "ref": "Joshua 14",
                "title": "929",
                "value": "Joshua 14 (201)",
                "category": "Tanakh",
                "hebrew_title": "929",
                "hebrew_value": "יהושע י״ד (201)"
            },
            {
                "ref": "Mishnah Kelim 9:1-2",
                "title": "Daily Mishnah",
                "value": "Mishnah Kelim 9:1-2",
                "category": "Mishnah",
                "hebrew_title": "משנה יומית",
                "hebrew_value": "משנה כלים ט׳:א׳-ב׳"
            },
            {
                "ref": "Mishneh Torah, Sabbath 17",
                "title": "Daily Rambam",
                "value": "Sabbath 17",
                "category": "Halakhah",
                "hebrew_title": "הרמב\"ם היומי",
                "hebrew_value": "הלכות שבת י״ז"
            },
            {
                "ref": "Mishneh Torah, Gifts to the Poor 8-10",
                "title": "Daily Rambam (3 Chapters)",
                "value": "Gifts to the Poor 8-10",
                "category": "Halakhah",
                "hebrew_title": "הרמב\"ם היומי (3 פרקים)",
                "hebrew_value": "הלכות מתנות עניים ח׳-י׳"
            },
            {
                "ref": "Nedarim 85",
                "title": "Daf a Week",
                "value": "Nedarim 85",
                "category": "Talmud",
                "hebrew_title": "דף השבוע",
                "hebrew_value": "נדרים פ״ה"
            },
            {
                "ref": "Shulchan Arukh, Orach Chayim 204:5-7",
                "title": "Halakhah Yomit",
                "value": "Shulchan Arukh, Orach Chayim 204:5-7",
                "category": "Halakhah",
                "hebrew_title": "הלכה יומית",
                "hebrew_value": "שולחן ערוך, אורח חיים ר״ד:ה׳-ז׳"
            },
            {
                "ref": "Arukh HaShulchan, Orach Chaim 308:37-42",
                "title": "Arukh HaShulchan Yomi",
                "value": "Orach Chaim 308:37-42",
                "category": "Halakhah",
                "hebrew_title": "ערוך השולחן הי
…