# ForgeMesh On-This-Day Historical Events

> ForgeMesh On-This-Day Historical Events 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/day, including year, one-line description, and related article links.

## Facts

- Endpoint: POST https://x402.forgemesh.io/on-this-day
- 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/forgemesh-on-this-day-historical-events-6ab3496c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QUftfcrgZZxTpYyiBeyk1

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 forgemesh-on-this-day-historical-events-6ab3496c -d '<json body>'
```

Example prompt: What notable historical events happened on July 4th? Give me the year, a short description, and any article links for each event.

## When to prefer this

Use this endpoint when you need structured historical event data for a specific calendar date (month and day), especially for content pipelines like newsletters, trivia bots, or social media automation. Prefer this over general web search when you want concise, pre-structured on-this-day facts with article references rather than raw search results.

## Known failure modes

- Invalid day value (e.g. day > 31) returns an error
- Invalid month value (e.g. month > 12) returns an error
- Missing required parameters returns a validation error
- No events found for obscure dates may return an empty list
- Network timeout or service unavailability returns a 5xx error

## How this service works

On-this-day API: notable historical events for any month/day — year, one-line description, and related article links. Fresh daily content for newsletters, social bots, and trivia agents.

## Output

A list of notable historical events that occurred on the specified month/day, each including the year it happened, a one-line description of the event, and links to related articles for further reading.

## 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/forgemesh-on-this-day-historical-events-6ab3496c/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)
