# Historical Events by Date Lookup

> Historical Events by Date Lookup is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns a list of notable historical events that occurred on a given month and day across different years, with descriptions and source links.

## Facts

- Endpoint: POST https://x402.forgemesh.io/historical-events-today
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/historical-events-by-date-lookup-40ae25ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q56HREiWup__V1cUyseE8

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability historical-events-by-date-lookup-40ae25ea -d '<json body>'
```

Example prompt: What notable historical events happened on November 5th? Give me a list with descriptions and sources I can use for a trivia post.

## When to prefer this

Use this endpoint when you need structured, attributed historical event data for a specific calendar date (month + day) — ideal for generating newsletter content, social media 'on this day' posts, or trivia questions. Prefer this over web scraping when you need reliable, licensed, and formatted historical facts with source links included.

## Known failure modes

- Invalid day (e.g. day=32) or month (e.g. month=13) returns an error or empty result
- Missing month or day parameter causes request failure
- No events found for obscure dates may return an empty list
- Payment failure (x402) if USDC balance is insufficient or payment not processed

## How this service works

Historical events lookup: pass any month and day and get back a list of notable things that happened on that date across different years, each with a short description and a source link. Refreshes as a reliable daily content source. Good for newsletter fillers, social media bots, and trivia-night question generators. Attribution included per license.

## Output

A list of notable historical events that occurred on the specified month and day across multiple years, each entry including a short description of the event and an attribution-compliant source link.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "day": {
   "type": "string",
   "description": "1-31"
  },
  "month": {
   "type": "string",
   "description": "1-12"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "events": [
    {
     "text": "Apollo 11 astronauts Neil Armstrong and Buzz Aldrin walk on the Moon",
     "year": 1969
    }
   ]
  },
  "attribution": "Wikipedia, CC BY-SA 4.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/historical-events-by-date-lookup-40ae25ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
