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.
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.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
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?
As of our last scheduled check, Hebrew Calendar is healthy with 100% uptime over 90 days and a 533 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.