# This Day in History API (x402.forgemesh.io)

> This Day in History API (x402.forgemesh.io) 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 notable historical events that occurred on a given month and day, including the year, a one-line description, and article links, as structured JSON.

## Facts

- Endpoint: POST https://x402.forgemesh.io/this-day-in-history
- 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/this-day-in-history-api-x402-forgemesh-io-80ec87ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__E0monI2Od2aN4QNYjpxT

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 this-day-in-history-api-x402-forgemesh-io-80ec87ba -d '<json body>'
```

Example prompt: Can you pull up notable historical events that happened on November 5th — I need the year, a short description, and article links for each event so I can use them in today's newsletter?

## When to prefer this

Choose this endpoint when you need a reliable, structured, daily-renewable source of real historical events for a specific calendar date — ideal for newsletters, social bots, trivia games, or engagement agents that need CC BY-SA licensed content with article links. Prefer this over scraping Wikipedia or similar sources when you want consistent JSON output with attribution baked in and a low per-call cost.

## Known failure modes

- Invalid month value (outside 1-12) may return an error or empty result
- Invalid day value (outside 1-31 or inconsistent with month) may return an error or empty result
- Missing month or day fields may result in a 400 bad request
- No events found for an obscure date may return an empty events array
- Payment failure via x402 protocol will block access before the endpoint is reached

## How this service works

This day in history API: notable events that happened on any month/day — the year, a one-line description, and links to fuller articles, as structured JSON. A renewable daily-content source for newsletters, social bots, trivia games, and engagement agents. CC BY-SA with attribution included. Cached 24 hours.

## Output

A structured JSON array of notable historical events matching the given month and day, each with the year the event occurred, a one-line description of the event, and links to fuller articles for attribution. Content is CC BY-SA licensed with attribution included and is cached for 24 hours.

## 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/this-day-in-history-api-x402-forgemesh-io-80ec87ba/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)
