Hebrew Calendar
Convert Gregorian dates to the Hebrew calendar as JSON
Hebcal's converter turns any Gregorian date into its Hebrew-calendar equivalent, returning the Hebrew year, month and day plus the Hebrew-script date and any Torah portion or holiday that falls on it. Pass cfg=json to get structured output. The wider Hebcal API also covers Shabbat and holiday times.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://www.hebcal.com/converter?cfg=json&gy=2026&gm=7&gd=5&g2h=1
{
"gy": 2026,
"gm": 7,
"gd": 5,
"hy": 5786,
"hm": "Tamuz",
"hd": 20,
"hebrew": "כ׳ בְּתַמּוּז תשפ״ו",
"events": [
"Parashat Matot-Masei"
]
}curl "https://www.hebcal.com/converter?cfg=json&gy=2026&gm=7&gd=5&g2h=1"const res = await fetch("https://www.hebcal.com/converter?cfg=json&gy=2026&gm=7&gd=5&g2h=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.hebcal.com/converter?cfg=json&gy=2026&gm=7&gd=5&g2h=1")
print(res.json())/converter?cfg=json&gy=2026&gm=7&gd=5&g2h=1PROBEDConvert Gregorian dates to the Hebrew calendar as JSON
/converter?limit=5Converter — documented GET route.
/converter?page=1Converter — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Hebrew Calendar: common questions
Is Hebrew Calendar free to use?
Yes — Hebrew Calendar is a free social & work API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Hebrew Calendar need an API key?
No — Hebrew Calendar needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Hebrew Calendar from the browser?
Yes — Hebrew Calendar returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Hebrew Calendar up right now?
Hebrew Calendar is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.