# Macaroon Network Christian Passage Compare

> Macaroon Network Christian Passage Compare is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Compares a bounded scripture passage side-by-side between the Berean Standard Bible (BSB) and World English Bible (WEB) without interpretation or blending of the source texts.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/christian-passage-compare-v1
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-christian-passage-compare-dff5381f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GmlD5VQGEzW2ed_YbfWWZ

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 macaroon-network-christian-passage-compare-dff5381f -d '<json body>'
```

Example prompt: Can you compare John 3:16 through 3:18 side by side in the Berean Standard Bible and the World English Bible, showing the exact text of each without any commentary?

## When to prefer this

Choose this endpoint when you need to present the exact, unaltered text of a scripture passage from two specific public-domain Bible translations (BSB and WEB) without any AI-generated interpretation, paraphrase, or blending. It is ideal for Bible study tools, sermon preparation, or devotional apps that need transparent, source-faithful comparison. Prefer this over general LLM Bible quotation (which may hallucinate or blend translations) or over single-version retrieval endpoints when textual comparison between BSB and WEB is the explicit goal.

## Known failure modes

- Invalid or malformed passage reference returns an error
- Passage bounds outside available Bible text may return empty or partial results
- Non-existent book or chapter reference returns a validation error
- Overly large passage ranges may be rejected or truncated
- Malformed request body returns schema validation error

## How this service works

Compare a bounded passage in the public-domain BSB and WEB without blending or interpreting the source texts.

## Output

A side-by-side display of the requested scripture passage as it appears verbatim in both the Berean Standard Bible (BSB) and the World English Bible (WEB), with no blending, paraphrase, or interpretive commentary added. The response preserves the exact wording of each public-domain translation for the bounded passage requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macaroon-network-christian-passage-compare-dff5381f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
