{day}: Get notable deaths for a specific date

API: dayinhistory.dev:day-in-history-api
Endpoint: /deaths/{month}/{day}
Response format: application/json
Auth: none
Method: GET
Last Status: 200
Latency: 1010ms

Description

Returns notable deaths for a specific month/day using named months. Query memorial dates for any date using lowercase month names. Useful for historical research or memorial features on specific anniversaries.

From spec: Returns a paginated list of notable people who died on the specified month and day.

Usage Tips

- Month names are lowercase (january, july, december, etc.) - Day is numeric - Historical figures may have negative death years

Parameters (3)

day (integer, path, required)

Day of the month (1-31, depending on month)

Constraints: {'minimum': 1, 'maximum': 31}

month (string, path, required)

Full month name (e.g., january, february, march)

Constraints: {'enum': ['january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december']}

page (integer, query, optional, default: 1)

Page number for pagination (starting from 1)

Constraints: {'minimum': 1}

Examples (3)

Get deaths on January 1st curl

Fetch notable deaths on January 1

curl 'https://api.dayinhistory.dev/v1/deaths/january/1'
import requests

resp = requests.get("https://api.dayinhistory.dev/v1/deaths/january/1")
data = resp.json()
import zingu_apis

api = zingu_apis.api("dayinhistory")
result = api.fetch("deaths/{month}/{day}")

for item in result:
    print(item)
const resp = await fetch("https://api.dayinhistory.dev/v1/deaths/january/1");
const data = await resp.json();
Get deaths on December 25th, page 2 curl

Fetch notable deaths on December 25 (paginated)

curl 'https://api.dayinhistory.dev/v1/deaths/december/25?page=2'
import requests

resp = requests.get(
    "https://api.dayinhistory.dev/v1/deaths/december/25",
    params={
        'page': 2,
    },
)
data = resp.json()
import zingu_apis

api = zingu_apis.api("dayinhistory")
result = api.fetch("deaths/{month}/{day}", page=2)

for item in result:
    print(item)
const resp = await fetch("https://api.dayinhistory.dev/v1/deaths/december/25?page=2");
const data = await resp.json();
Get deaths on July 4th curl

Fetch notable deaths on July 4

curl 'https://api.dayinhistory.dev/v1/deaths/july/4'
import requests

resp = requests.get("https://api.dayinhistory.dev/v1/deaths/july/4")
data = resp.json()
import zingu_apis

api = zingu_apis.api("dayinhistory")
result = api.fetch("deaths/{month}/{day}")

for item in result:
    print(item)
const resp = await fetch("https://api.dayinhistory.dev/v1/deaths/july/4");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 17:43:09.197751 200 1010ms
2026-04-16 03:26:51.674481 200 1196ms
2026-04-16 00:30:50.584959 200 968ms
2026-04-16 00:05:41.487511 200 1026ms
2026-04-15 03:08:33.758314 200 927ms
2026-04-15 02:26:36.097857 200 1018ms
2026-04-15 02:16:06.372226 200 1262ms
2026-04-14 02:30:26.997702 200 991ms
2026-04-14 02:24:50.671602 200 880ms
2026-04-14 00:05:26.481105 200 1087ms
2026-04-12 14:35:37.250821 200 839ms
2026-04-12 13:04:07.214642 200 966ms
2026-04-12 12:43:19.725195 200 791ms
2026-04-10 02:35:34.475166 200 703ms
2026-04-10 02:30:09.916855 200 822ms
2026-04-10 02:07:14.244453 200 759ms
2026-04-09 03:35:40.413568 200 854ms
2026-04-09 03:09:47.759828 200 894ms
2026-04-09 00:43:18.663612 200 828ms
2026-04-08 07:36:13.390207 200 791ms
2026-04-08 06:52:49.750417 200 790ms
2026-04-08 00:24:36.056581 200 899ms
2026-04-07 01:28:19.799727 200 853ms
2026-04-07 01:14:21.317168 200 852ms
2026-04-07 00:21:56.488864 200 854ms
2026-04-06 06:40:58.766989 200 845ms
2026-04-05 22:52:41.491036 ERR
2026-04-05 22:47:22.635694 200 1052ms
2026-04-05 14:08:34.861863 200 1114ms
2026-04-05 01:38:38.166579 200 961ms
2026-04-05 00:59:38.477883 200 899ms
2026-04-05 00:54:53.569692 200 867ms
2026-04-04 02:46:56.029111 200 843ms
2026-04-04 02:33:03.854127 200 888ms
2026-04-04 02:25:01.618675 200 877ms
2026-04-03 13:21:17.950873 200 887ms
2026-04-03 12:58:22.245791 200 996ms
2026-04-03 12:12:47.744320 200 956ms
2026-03-30 03:08:00.323430 200 787ms
2026-03-30 02:56:50.070597 200 810ms
2026-03-30 02:46:03.629974 200 992ms
2026-03-29 13:16:39.442849 200 741ms
2026-03-29 13:01:34.552033 200 828ms
2026-03-29 12:41:48.075223 200 742ms
2026-03-23 10:50:52.951358 200 823ms
2026-03-23 10:19:28.518830 200 968ms
2026-03-23 09:10:47.811204 200 984ms