Namedays Calendar API
Overview
Namedays Calendar provides name day traditions for dozens of countries, letting you look up which names are celebrated on any given date. It is a no-auth, open REST API that returns JSON, making it ideal for greeting-card apps, HR tools, or calendar widgets. Coverage spans Europe and beyond, with per-country endpoints so you fetch only the data you need.
Beginner Tip
Start with the today endpoint (e.g., GET /api/V1/today?country=us) — it requires zero parameters beyond the country code and returns a name list instantly. Country codes follow the two-letter ISO 3166-1 alpha-2 standard such as de for Germany or pl for Poland.
Available Data
Example Response
{
"name": "Japan",
"capital": "Tokyo",
"population": 125800000,
"region": "Asia",
"languages": [
"Japanese"
],
"flag": "https://flagcdn.com/jp.svg",
"currencies": [
{
"code": "JPY",
"name": "Japanese yen"
}
]
} Field Reference
data.name The name celebrated on this day in the specified country data.country ISO 3166-1 alpha-2 country code reflecting the query parameter data.day Day of the month (1-31) for the queried nameday data.month Month number (1-12) for the queried nameday Implementation Example
const url = "https://nameday.abalin.net/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Church Calendar
⭐ Beginner's PickChurch Calendar (calapi.inadiutorium.cz) is a free, no-auth REST API that returns the Roman Catholic liturgical calendar for any date or month.
Czech Namedays Calendar
⭐ Beginner's PickThe Czech Namedays Calendar API lets you look up the Czech or Slovak nameday (svátek) associated with a given first name, or find whose nameday falls on a specific date.
Hebrew Calendar
⭐ Beginner's PickThe Hebcal API provides free Jewish calendar data including Hebrew date conversions, Shabbat candle-lighting times, Jewish holidays, and weekly Torah portion readings.
LectServe
⭐ Beginner's PickLectServe is a free REST API that returns Revised Common Lectionary readings — Scripture passages assigned to each Sunday and feast day used by many Protestant denominations.
Nager.Date
⭐ Beginner's PickNager.Date is a completely free, open-source REST API providing public holidays for over 90 countries with no API key required.