# ForgeMesh Daily History Facts

> ForgeMesh Daily History Facts 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-13).

Retrieves notable historical events for a given calendar day and month, with year, summary, and reference link per event.

## Facts

- Endpoint: POST https://x402.forgemesh.io/daily-history-facts
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-daily-history-facts-23cdfd32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LVr6gaWBdybOsTRXu06jj

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-daily-history-facts-23cdfd32 -d '<json body>'
```

Example prompt: What notable historical events happened on July 4? Give me the year, a one-line summary, and a link for each one.

## When to prefer this

Use this endpoint when you need structured, dated historical event data keyed to a specific calendar day and month — ideal for morning briefing bots, trivia agents, 'on this day' calendar widgets, or educational apps that rotate daily content. Prefer this over general web search when you need clean, attribution-ready, machine-readable history facts without parsing overhead.

## Known failure modes

- Invalid day value (outside 1-31) — returns validation error
- Invalid month value (outside 1-12) — returns validation error
- Missing day or month fields — returns bad request error
- Payment failure or insufficient USDC balance — returns 402 Payment Required
- No historical events found for the given date — may return empty list
- Service unavailable or upstream data outage — returns 5xx error

## How this service works

Daily history facts API: retrieves notable historical events tied to any calendar date, each entry carrying the year, a one-line summary, and a link for further reading. Built to be called once a day as a rotating content source. Useful for calendar apps, morning-briefing bots, and educational trivia agents. Attribution required and included.

## Output

A list of historical events for the specified day and month, each with the year it occurred, a brief one-line summary of the event, and a URL link for further reading, plus attribution information.

## 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-daily-history-facts-23cdfd32/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)
