# x402.forgemesh.io Today's Scripture

> x402.forgemesh.io Today's Scripture 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 King James Version Bible verse assigned to a given UTC date, deterministic so the same date always yields the same verse.

## Facts

- Endpoint: POST https://x402.forgemesh.io/todays-scripture
- 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-today-s-scripture-d924be78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yedadRKWcTSlkbqutNrKT

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-today-s-scripture-d924be78 -d '<json body>'
```

Example prompt: What's today's KJV scripture reading? And can you also pull up the verse that was assigned on December 25, 2023?

## When to prefer this

Use this endpoint when you need a deterministic, date-based KJV Bible verse — especially useful for daily devotionals, journaling apps, or replaying a specific historical date's scripture. Prefer over general Bible APIs when you need reproducibility (same date = same verse always) and local public-domain KJV text without third-party Bible API dependencies.

## Known failure modes

- Invalid date format returns an error (must be YYYY-MM-DD)
- Unsupported translation code returns an error (only 'kjv' currently hosted)
- Payment failure or insufficient USDC balance blocks the request
- Malformed request body may return a 400 error

## How this service works

Today's scripture reading, deterministic by UTC date and served from locally hosted public-domain KJV text. Optional date input replays any day's verse.

## Output

Returns the Bible verse (KJV text) assigned to the requested date, including the passage reference and verse content. The same date always returns the same verse deterministically.

## 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/x402-forgemesh-io-today-s-scripture-d924be78/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)
