# x402.forgemesh.io Scripture Lookup

> x402.forgemesh.io Scripture Lookup 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).

Resolves a Bible scripture reference string and returns the exact King James Version text, verse by verse, from locally hosted public-domain data.

## Facts

- Endpoint: POST https://x402.forgemesh.io/scripture-lookup
- 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-scripture-lookup-06f45f5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mpD7cAOV0bu6sfSjQ9OLT

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-scripture-lookup-06f45f5c -d '<json body>'
```

Example prompt: Can you pull up the exact King James Version text for 1 Corinthians 13:4-7?

## When to prefer this

Use this endpoint when you need the exact canonical King James Version wording of a specific Bible verse or same-chapter verse range, especially in applications requiring public-domain scriptural text without depending on a third-party Bible API.

## Known failure modes

- Invalid or unrecognized scripture reference format returns an error
- Cross-chapter ranges are not supported and will fail or return partial results
- Unsupported translation codes (non-KJV) return an error or fall back to default
- Malformed input (missing book name, chapter, or verse) yields a validation error
- Network or payment authorization failure results in no response

## How this service works

Scripture reference resolver: pass a reference string and get back the exact King James Version text, verse by verse, from locally hosted public-domain data. Supports single verses and same-chapter ranges.

## Output

Returns the full KJV text for the requested scripture reference, broken out verse by verse, including the book, chapter, and verse identifiers for each returned verse.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "reference": {
   "type": "string",
   "description": "Verse reference, e.g. \"John 3:16\", \"Genesis 1:1-3\", \"1 Cor 13:4-7\""
  },
  "translation": {
   "type": "string",
   "description": "Optional: translation code. Currently hosted: kjv (default)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "book": "John",
  "text": "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.",
  "verses": [
   {
    "text": "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.",
    "verse": 16
   }
  ],
  "chapter": 3,
  "reference": "John 3:16",
  "translation": "kjv"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-forgemesh-io-scripture-lookup-06f45f5c/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)
