# x402.forgemesh.io Daily Proverb

> x402.forgemesh.io Daily Proverb 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 of the Day — chapter selected by day-of-month, with a date-seeded verse highlight — optionally with the full chapter text.

## Facts

- Endpoint: POST https://x402.forgemesh.io/daily-proverb
- 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/x402-forgemesh-io-daily-proverb-327e1ff0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fZKdFq-O3X_lBANnYMzOQ

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 x402-forgemesh-io-daily-proverb-327e1ff0 -d '<json body>'
```

Example prompt: What's today's Proverb of the Day from the KJV Bible? Also include the full chapter text so I can read the whole thing.

## When to prefer this

Choose this endpoint when you need a deterministic, date-anchored daily Proverb reading from the KJV Bible — particularly when reproducibility matters (same date always returns the same chapter and verse). Prefer this over generic Bible APIs when you want a simple pay-per-call micropayment model with no subscription, or when you specifically need Proverbs structured by day-of-month.

## Known failure modes

- Invalid date format (non-YYYY-MM-DD) may return an error or fall back to today
- Unsupported translation code returns an error (only 'kjv' currently hosted)
- Date outside valid calendar range may return an error
- Network or payment failure returns a 402 or connection error

## How this service works

Today's Proverbs reading: day-of-month picks the chapter (1-31, matching Proverbs' 31 chapters), plus a date-seeded verse highlight from within it. Locally hosted KJV text.

## Output

Returns the Proverbs chapter corresponding to the day-of-month for the given date, a date-seeded highlighted verse within that chapter, and optionally the full chapter text with all verses, all 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/x402-forgemesh-io-daily-proverb-327e1ff0/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)
