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
    }
}
200Successful request
404No names found or name not found
422Validation error (e.g., invalid country code or date format)

/api/v1/info/names/{country}/{day}

Get the names of the specified day.

todayCurrent date
tomorrowNext day
yesterdayPrevious day
+n daysDate after n days (e.g., +7 days)
-n daysDate before n days (e.g., -2 days)
YYYY-MM-DDSpecific 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"
    ]
}
200Successful request
404No names found or name not found
422Validation error (e.g., invalid country code or date format)