# KJV Bible Full Chapter Text Retrieval

> KJV Bible Full Chapter Text Retrieval 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 complete text of any King James Version Bible chapter, both verse-by-verse and as a continuous passage, served from local data.

## Facts

- Endpoint: POST https://x402.forgemesh.io/full-chapter-text
- 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/kjv-bible-full-chapter-text-retrieval-1a69cae7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gBn4l1eDYxxF7UuT0Ss8L

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 kjv-bible-full-chapter-text-retrieval-1a69cae7 -d '<json body>'
```

Example prompt: Can you get me the full text of Psalms chapter 23 from the King James Bible, both verse by verse and as one continuous passage?

## When to prefer this

Use this endpoint when you need the exact, verbatim KJV text of a specific Bible chapter — including verse-by-verse breakdown and continuous passage — served quickly from local data without web scraping or external Bible API dependencies.

## Known failure modes

- Invalid or misspelled book name returns an error or empty result
- Chapter number out of range for the given book returns an error
- Unsupported translation code returns an error (only 'kjv' is currently hosted)
- Missing required fields (book or chapter) returns a validation error
- Payment failure ($0.005 USDC via x402) blocks access to the response

## How this service works

Retrieve the complete text of any King James Version Bible chapter, verse-by-verse and as one continuous passage, served entirely from local data.

## Output

Returns the complete KJV chapter text organized verse-by-verse and as one continuous passage, covering all verses in the requested book and chapter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "book": {
   "type": "string",
   "description": "Book name, e.g. \"Psalms\", \"Genesis\", \"1 Corinthians\" (abbreviations accepted)"
  },
  "chapter": {
   "type": "string",
   "description": "Chapter number, e.g. 23"
  },
  "translation": {
   "type": "string",
   "description": "Optional: translation code. Currently hosted: kjv (default)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "book": "Psalms",
  "text": "The LORD is my shepherd; I shall not want. He maketh me to lie down in green pastures: he leadeth me beside the still waters. ...",
  "verses": [
   {
    "text": "The LORD is my shepherd; I shall not want.",
    "verse": 1
   },
   {
    "text": "He maketh me to lie down in green pastures: he leadeth me beside the still waters.",
    "verse": 2
   }
  ],
  "chapter": 23,
  "reference": "Psalms 23",
  "translation": "kjv",
  "verse_count": 6
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kjv-bible-full-chapter-text-retrieval-1a69cae7/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)
