# Forgemesh Daily Proverbs API

> Forgemesh Daily Proverbs API is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the KJV Proverb chapter matching the UTC day of the month, a rotating highlighted verse of the day, and optionally the full chapter text for any given date.

## Facts

- Endpoint: POST https://x402.forgemesh.io/proverbs-daily
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-daily-proverbs-api-70b425b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZnobgBpEAfXzceUfHwB5L

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-proverbs-api-70b425b0 -d '<json body>'
```

Example prompt: What's today's daily Proverbs reading? Give me the verse of the day and the full KJV chapter text for today's date.

## When to prefer this

Use this endpoint when you need a date-based, deterministic daily Proverbs reading from the KJV Bible — specifically the chapter-per-day-of-month pattern — with an optional full chapter text. Prefer this over generic Bible APIs when you need a simple, low-cost, reproducible scripture lookup keyed to the calendar day.

## Known failure modes

- Invalid date format returns a 400-level error
- Unsupported translation code (non-KJV) may return an error or default to KJV
- Network or server downtime results in connection failure
- Missing or malformed JSON body may cause a parsing error

## How this service works

The classic daily-Proverbs reading: the UTC day of the month selects the matching chapter of Proverbs (the 16th reads Proverbs 16 — the book has exactly 31 chapters), plus a highlighted verse of the day that rotates within the chapter across months. Optional include_chapter flag returns the full chapter text (KJV). Served from locally hosted public-domain scripture. Optional date parameter for any calendar day.

## Output

Returns the Proverbs chapter number corresponding to the UTC day of the month, a rotating highlighted verse of the day within that chapter, the verse text in KJV, and optionally the complete KJV text of all verses in the chapter if include_chapter is set to true.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "Optional: YYYY-MM-DD (UTC). Defaults to today. Same date always returns the same chapter and verse."
  },
  "translation": {
   "type": "string",
   "description": "Optional: translation code. Currently hosted: kjv (default)"
  },
  "include_chapter": {
   "type": "string",
   "description": "Optional: \"true\" to also return the full chapter text and every verse (default false, verse-of-day only)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "book": "Proverbs",
  "date": "2026-02-16",
  "chapter": 16,
  "translation": "kjv",
  "verse_of_day": {
   "text": "The wrath of a king is as messengers of death: but a wise man will pacify it.",
   "verse": 14,
   "reference": "Proverbs 16:14"
  },
  "chapter_reference": "Proverbs 16"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-daily-proverbs-api-70b425b0/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)
