Czech Namedays Calendar API
Overview
The 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. It is completely free with no authentication required and supports JSON responses. Responses are instant and lightweight, making it great for beginners.
Beginner Tip
No API key needed — call the endpoint directly. To get today's nameday, try https://api.abalin.net/today?country=cz. Supported country values are "cz" and "sk".
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Czech Namedays Calendar",
"description": "Lookup for a name and returns nameday date",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
data.day Day of the month for the nameday result. data.month Month number for the nameday result. data.name_cz The Czech name celebrated on this day. data.name_sk The Slovak name celebrated on this day, which may differ from the Czech name. Implementation Example
const url = "https://svatky.adresa.info/";
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.
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.
Namedays Calendar
⭐ Beginner's PickNamedays Calendar provides name day traditions for dozens of countries, letting you look up which names are celebrated on any given date.