# Wisdom of the Day – Daily Proverbs KJV Reading

> Wisdom of the Day – Daily Proverbs KJV Reading 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 a daily Bible verse and optionally the full chapter from the Book of Proverbs, deterministically selected by date (day-of-month = chapter number), served from locally hosted KJV text.

## Facts

- Endpoint: POST https://x402.forgemesh.io/wisdom-of-the-day
- 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/wisdom-of-the-day-daily-proverbs-kjv-reading-05ffa5d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VYfUWPYPObFswvuUXLd7e

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 wisdom-of-the-day-daily-proverbs-kjv-reading-05ffa5d3 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need a deterministic, date-based daily Bible verse or chapter from Proverbs in KJV without relying on an external Bible API; ideal for devotional apps, daily digest emails, or any use case requiring a reproducible scripture lookup by date.

## Known failure modes

- Invalid date format returns an error (must be YYYY-MM-DD)
- Unsupported translation code returns an error (only 'kjv' currently hosted)
- Dates with day > 31 or day > number of Proverbs chapters may return an error or wrap
- include_chapter with invalid value may default silently to false

## How this service works

A daily wisdom reading from the Book of Proverbs — today's chapter (day-of-month = chapter number) plus a deterministic verse pick, served from locally hosted public-domain KJV text.

## Output

Returns the Proverbs chapter corresponding to today's day-of-month, a deterministically selected verse of the day (text and reference), and optionally the full chapter with all verses in KJV translation.

## 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/wisdom-of-the-day-daily-proverbs-kjv-reading-05ffa5d3/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)
