/v1/julian-day
Julian Day Number ↔ date
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/easter-api/v1/julian-day" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/easter-api/v1/julian-day", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/easter-api/v1/julian-day");
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/easter-api/v1/julian-day",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"jdn": 2451545,
"note": "Gregorian date → Julian Day Number, the continuous count of days since 1 January 4713 BC (Julian). Useful for date arithmetic across calendars.",
"inputs": {
"day": 1,
"year": 2000,
"month": 1
},
"weekday": "Saturday"
},
"meta": {
"timestamp": "2026-06-05T19:50:21.805Z",
"request_id": "715ba4cb-9002-4008-af76-90b473fe1553"
},
"status": "ok",
"message": "Julian Day Number",
"success": true
}