Namedays Calendar
Whose name day is it today, across many countries
Abalin's Nameday API returns the name days celebrated on a given date across dozens of countries as JSON. Call /V2/today for the current date (UTC by default), or /V2/date with a day and month. The GET endpoints need no key.
GET https://nameday.abalin.net/api/V2/today
{
"success": true,
"message": "Namedays for 07-05 timezone UTC",
"data": {
"at": "Albrecht, Antonius, Letizia",
"de": "Albrecht, Kira, Letizia",
"dk": "Anshelmus",
"es": "Filomena, Filomeno, Zoa",
"fi": "Unto",
"fr": "Antoine"
}
}curl "https://nameday.abalin.net/api/V2/today"const res = await fetch("https://nameday.abalin.net/api/V2/today");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://nameday.abalin.net/api/V2/today")
print(res.json())/V2/todayPROBEDWhose name day is it today, across many countries
/V2V2 — documented GET route.
/V2/1V2 details by ID (example: 1).
/V2?limit=10V2 — documented GET route.
/V2/search?q=testSearch by query parameters.
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.
Namedays Calendar: common questions
Is Namedays Calendar free to use?
Yes — Namedays 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 Namedays Calendar need an API key?
No — Namedays Calendar needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Namedays Calendar from the browser?
Yes — Namedays 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 Namedays Calendar up right now?
As of our last scheduled check, Namedays Calendar is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.