# ForgeMesh Verse of the Day

> ForgeMesh Verse 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 a deterministic daily King James Version Bible verse (comfort/encouragement passages), with the same verse guaranteed for all callers on the same UTC date, optionally for any past or future date.

## Facts

- Endpoint: POST https://x402.forgemesh.io/verse-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/forgemesh-verse-of-the-day-d18b7ff3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_icduLJFvWi-L6O74LX_8Q

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-verse-of-the-day-d18b7ff3 -d '<json body>'
```

Example prompt: What's the KJV Bible verse of the day for today? And also pull up the verse for December 25, 2024 so I can compare.

## When to prefer this

Use this endpoint when you need a consistent, reproducible daily Bible verse keyed to a UTC date — ideal for devotional apps, daily email digests, or any workflow where all users must see the same verse on the same day. Prefer this over third-party Bible APIs when you want zero external dependency at request time, guaranteed KJV text, and a curated set of well-known comfort/encouragement passages rather than random full-Bible rotation.

## Known failure modes

- Invalid date format (non-YYYY-MM-DD) may return a 400 error
- Unsupported translation code (anything other than 'kjv') likely returns an error or defaults
- Payment not included or insufficient ($0.005 USDC required) results in 402 Payment Required
- Network timeout or service unavailability returns a 5xx error

## How this service works

Deterministic daily Bible verse: every caller gets the same King James Version (KJV) verse on the same UTC date, drawn from a curated pool of ~375 well-known comfort and encouragement passages (Psalms, John, Romans, 1 Corinthians, Philippians and more). Served entirely from locally hosted public-domain scripture — no third-party dependency at request time. Optional date parameter looks up any day, past or future.

## Output

Returns the KJV Bible verse assigned to the requested UTC date (or today by default), including the verse text, its book/chapter/verse reference, the translation code, and the date. The same date always returns the same verse from a curated pool of ~375 well-known comfort and encouragement passages.

## 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 verse."
  },
  "translation": {
   "type": "string",
   "description": "Optional: translation code. Currently hosted: kjv (default)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-01-01",
  "text": "The LORD is my shepherd; I shall not want.",
  "pool_size": 376,
  "reference": "Psalms 23:1",
  "translation": "kjv"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-verse-of-the-day-d18b7ff3/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)
