Convert Gregorian <-> Hebrew date
API · /hebcal-api
Jewish Calendar API
The Jewish calendar as an API — powered by Hebcal. Convert any date between the Gregorian and Hebrew calendars (with the formatted Hebrew date and the Jewish events falling on that day), list the Jewish holidays of any year — major and minor festivals, Rosh Chodesh and special Shabbatot — each with its English and Hebrew name, date and category, and get this week's Shabbat candle-lighting time, Torah portion (parashah) and Havdalah time for any location by GeoNames id or coordinates. From Rosh Hashanah and Yom Kippur to Passover, Shavuot and Hanukkah, with Hebrew dates rendered in Hebrew script, it is ideal for calendar, scheduling, event, religious and cultural applications. A Jewish-calendar resource — distinct from secular public-holiday and Islamic prayer-time APIs. Open data from Hebcal (CC-BY 4.0 / GPL).
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 206 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,457
- attiva
- Chiamate totali
- 12
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 2,900 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 2,900 calls/month
- 2 req/sec
- Convert + holidays + Shabbat
- No credit card
Starter
€7.45 /mese
- 57,000 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 57k llamadas/mes
- 8 solicitudes/segundo
- Hebreo <-> Gregoriano en ambos sentidos
- Soporte por correo electrónico
Pro
€23.30 /mese
- 265,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 265k calls/month
- 20 req/sec
- Calendar & scheduling apps
- Priority support
Mega
€60.80 /mese
- 930,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 930k calls/month
- 50 req/sec
- Calendar platform
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Public Holidays API
Public holidays for 120+ countries — by year, the next upcoming holidays for a country, and the list of supported countries. Each holiday includes the date, English and local name, scope (national/regional) and type. Ideal for HR, scheduling and booking systems.
api.oanor.com/holidays-api
iCalendar API
Construye un evento iCalendar (.ics) válido según RFC 5545 a partir de parámetros simples — y obtén enlaces listos para usar "añadir al calendario" para Google, Outlook, Office 365 y Yahoo. Proporciona un título, inicio y fin (ISO 8601 o timestamps Unix, en UTC) — o una duración en minutos, o un indicador de todo el día — más ubicación opcional, descripción, URL, organizador, una recurrencia RRULE (ej. FREQ=WEEKLY) y un recordatorio (un VALARM N minutos antes). El servicio devuelve el texto .ics completamente formado con escape correcto y plegado de líneas de 75 octetos, un URI data: base64 que puedes colocar directamente en un enlace de descarga, y los cuatro enlaces profundos de calendario. Un segundo endpoint analiza texto .ics sin procesar de vuelta a eventos JSON estructurados. Todo se calcula localmente sin llamadas de red, por lo que es rápido y determinista. Construido para flujos de reserva y programación, páginas de eventos, botones de "añadir al calendario" en correos electrónicos, recordatorios y automatizaciones sin código. Un constructor de eventos de calendario — distinto de matemáticas de fecha/hora (datetime), datos de días festivos (holidays) y el calendario judío (hebcal). Sin clave upstream, sin caché.
api.oanor.com/ical-api
Prayer Times & Islamic Calendar API
Islamic prayer times, the Hijri calendar and the Qibla direction as an API. Get the five daily prayer times — Fajr, Dhuhr, Asr, Maghrib and Isha, plus sunrise, sunset, Imsak and midnight — for any coordinate and date, calculated with your choice of method (Muslim World League, ISNA, Umm al-Qura, Egyptian, and many more), alongside the matching Hijri date; convert any date between the Gregorian and Hijri (Islamic lunar) calendars in either direction; and get the exact Qibla direction — the compass bearing and great-circle distance from any location to the Kaaba in Mecca. Prayer times and calendar conversion are powered by the Aladhan service; the Qibla is computed directly. Ideal for Muslim prayer and lifestyle apps, mosque and community sites, Ramadan tools and calendars, and any app that needs accurate prayer times or Hijri dates. Open data.
api.oanor.com/prayer-api
On This Day API
Eventi storici, nascite e morti notevoli, e festività per qualsiasi data del calendario — "in questo giorno nella storia" — trasmessi in diretta da Wikipedia. Ottieni i momenti salienti curati di oggi, o passa qualsiasi data (es. 07-20 → tra gli eventi lo sbarco dell'Apollo 11 sulla Luna) per recuperare eventi notevoli, nascite, morti, festività/ricorrenze, o i momenti salienti selezionati dall'editore. Ogni voce riporta l'anno, una descrizione di una riga e un link al relativo articolo di Wikipedia. Ideale per widget "oggi nella storia", app di contenuti giornalieri, curiosità, newsletter e strumenti educativi.
api.oanor.com/onthisday-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Jewish Calendar API?
Qual è il limite di velocità di Jewish Calendar API?
Quanto costa Jewish Calendar API?
Posso cancellare l'abbonamento in qualsiasi momento?
Jewish Calendar API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/hebcal-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/hebcal-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/hebcal-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/hebcal-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.