Fake Historical Event
The Fake Historical Event API returns a fictional event for any date string. Includes a deterministic year (800-1900), a place ("the Duchy of Pretzelsburg"), an action ("declared war on bread"), a significance note, a source, and a verifiability rating (always low, very low, or absent).
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
date |
string |
Required | — | Any date string. |
Examples
curl "https://api.stupidapis.com/fake-historical-event/lookup?date=May+5"
import requests
response = requests.get(
"https://api.stupidapis.com/fake-historical-event/lookup",
params={"date": "May 5"}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/fake-historical-event/lookup?date=May+5" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
date |
string |
Echoed back |
year |
number |
Year of the event |
event |
string |
The event itself |
significance |
string |
Why it matters |
source |
string |
Where it was recorded |
verifiability |
string |
low / very low / absent |
Example Response
{
"date": "May 5",
"year": 1487,
"event": "the Duchy of Pretzelsburg declared war on bread",
"significance": "the consequences are still being unraveled",
"source": "a fragment of parchment recovered from a ledger",
"verifiability": "very low"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/fake-historical-event/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.