# ForgeMesh Daily Bible Verse API

> ForgeMesh Daily Bible Verse API 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, date-seeded KJV Bible verse from a curated pool of encouragement passages, with the same verse served to all users on a given date.

## Facts

- Endpoint: POST https://x402.forgemesh.io/daily-bible-verse
- 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-daily-bible-verse-api-80ae8979
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PBsx3bqEY23y4HFo6gQdw

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-daily-bible-verse-api-80ae8979 -d '<json body>'
```

Example prompt: What's the shared daily Bible verse for today in KJV? I want to post it in our morning devotional Discord channel.

## When to prefer this

Choose this endpoint when you need a consistent, shared daily Bible verse that is the same for every user on a given date — ideal for devotional bots, community Discord servers, morning digest newsletters, or any app where verse consistency across users matters. Not suitable for random per-user verse generation or full Bible search.

## Known failure modes

- Unsupported translation code returns an error — only 'kjv' is currently supported
- Invalid date format (not YYYY-MM-DD) may return a 400 error or default to today
- Payment failure via x402 protocol blocks the response
- Future or far-past dates may not be guaranteed to return meaningful results

## How this service works

Same-verse-for-everyone daily Bible verse API: date-seeded pick from a curated pool of well-known KJV encouragement passages. Drop it into a devotional bot, morning digest, or Discord daily-message job.

## Output

Returns a KJV Bible verse (text and reference) deterministically chosen for the requested date — the same verse is returned for all callers on that date, enabling consistent shared devotional experiences across communities.

## 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-daily-bible-verse-api-80ae8979/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)
