Developers building apps for Jewish or Israeli audiences often need Shabbat times and Jewish calendar data. Manually calculating these from astronomical tables or maintaining your own calendar logic is error-prone and complex.
Author: @hoodini
Access Shabbat candle lighting times, Havdalah times, Jewish holidays, and Hebrew date conversion via the Hebcal API. Use when building apps that need Jewish calendar data for any location worldwide.
npx skills-il add hoodini/ai-agents-skills/skills/shabbat-timesAccess Shabbat times and Jewish calendar data via the Hebcal API.
const response = await fetch(
'https://www.hebcal.com/shabbat?cfg=json&geonameid=5128581&M=on'
);
const data = await response.json();const url = new URL('https://www.hebcal.com/shabbat');
url.searchParams.set('cfg', 'json');
url.searchParams.set('geonameid', '5128581'); // New York
url.searchParams.set('M', 'on'); // Include Havdalahconst url = new URL('https://www.hebcal.com/shabbat');
url.searchParams.set('latitude', '32.0853');
url.searchParams.set('longitude', '34.7818');
url.searchParams.set('tzid', 'Asia/Jerusalem');Fetch holidays, parsha, Rosh Chodesh, and special Shabbatot for any year.
Convert between Gregorian and Hebrew dates.
Includes a useShabbatTimes React hook for easy integration.
| City | ID |
|---|---|
| Jerusalem | 281184 |
| Tel Aviv | 293397 |
| New York | 5128581 |
| Los Angeles | 5368361 |
| London | 2643743 |
Fetch this week's Shabbat candle lighting and Havdalah times for Tel Aviv using the Hebcal API
Create a React component that displays Shabbat times for Jerusalem, including candle lighting, Havdalah, and this week's parsha
Convert today's date to the Hebrew calendar date using the Hebcal converter API
Fetch all major and minor Jewish holidays for 2026 using the Hebcal calendar API
Supported Agents
Trust Score
Hebrew nikud (vowel points) reference for AI agents. Correct nikud rules for verb conjugations (binyanim), dagesh, gender suffixes, homographs, and common mistakes. Use before adding nikud to Hebrew text, especially for TTS.
Generate professional Hebrew documents including PDF, DOCX, and PPTX with full RTL support and proper Hebrew typography. Use when user asks to create Hebrew PDF, generate Israeli business documents, "lehafik heshbonit", "litstor hozeh", build Hebrew Word document, create Hebrew PowerPoint, or produce Israeli templates such as Heshbonit Mas (tax invoice), Hozeh (contract), Hatza'at Mechir (proposal), or Protokol (meeting minutes). Covers reportlab, WeasyPrint, python-docx, and pptxgenjs with bidi paragraph support. Do NOT use for OCR or reading existing documents (use hebrew-ocr-forms instead).
Generate SRT subtitles from video or audio files with Hebrew and English transcription support. Use when you need to create captions, transcripts, or hardcoded subtitles for social media and WhatsApp. Supports automatic language detection, translation between Hebrew and English, and burning subtitles directly into video files.
Want to build your own skill? Try the Skill Creator · Submit a Skill