Name Days
Check name days by name or date
Currently, only LV (Latvia) is supported.
Dagne, Dagnis
February 28th
API Documentation
/api/v1/info/name/day/{country}/{name}
Get the nameday of the specified name.
Method: GETResponse Format: JSON
GET https://api.prompt.lv/api/v1/info/name/day/lv/Justs{
"success": true,
"code": 200,
"result": {
"month": 2,
"day": 28
}
}200 | Successful request |
404 | No names found or name not found |
422 | Validation error (e.g., invalid country code or date format) |
/api/v1/info/names/{country}/{day}
Get the names of the specified day.
today | Current date |
tomorrow | Next day |
yesterday | Previous day |
+n days | Date after n days (e.g., +7 days) |
-n days | Date before n days (e.g., -2 days) |
YYYY-MM-DD | Specific date in ISO format |
Method: GETResponse Format: JSON
GET https://api.prompt.lv/api/v1/info/names/lv/today{
"success": true,
"code": 200,
"result": [
"Dagne",
"Dagnis"
]
}200 | Successful request |
404 | No names found or name not found |
422 | Validation error (e.g., invalid country code or date format) |