# Proverbs Chapter of the Day

> Proverbs Chapter of the Day 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 which chapter of Proverbs to read today based on the day-of-month convention, with a highlighted verse of the day and optional full chapter text.

## Facts

- Endpoint: POST https://x402.forgemesh.io/proverbs-chapter-today
- 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/proverbs-chapter-of-the-day-4e557e7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jn9Zp_XV8HeB-p_EnjJkA

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 proverbs-chapter-of-the-day-4e557e7d -d '<json body>'
```

Example prompt: What's the Proverbs chapter I should read today according to the classic day-of-month plan? Include the full chapter text in KJV.

## When to prefer this

Use this endpoint when you need a deterministic, date-based Proverbs chapter lookup following the traditional day-of-month reading convention, especially when you want a curated verse of the day alongside optional full chapter text in KJV.

## Known failure modes

- Invalid date format returns an error — must be YYYY-MM-DD
- Unsupported translation code returns an error — currently only 'kjv' is hosted
- Payment failure (x402 protocol) blocks the request
- Malformed include_chapter value (not 'true') may default to false silently

## How this service works

Which chapter of Proverbs to read today, by the classic day-of-month convention, with a highlighted verse of the day and an option to pull the full chapter text.

## Output

Returns the Proverbs chapter number corresponding to today's date (or a specified date), a highlighted verse of the day with its text, and optionally the complete chapter text with all verses in the requested translation (KJV by default).

## 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/proverbs-chapter-of-the-day-4e557e7d/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)
