# Macaroon Network Christian Scripture Lookup

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

Retrieve a bounded passage from the Berean Standard Bible or World English Bible with exact source labels and provenance

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/christian-scripture-lookup-v1
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-christian-scripture-lookup-84b58535
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_52eNjAPG6EeacWz7ti_T2

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-scripture-lookup-84b58535 -d '<json body>'
```

Example prompt: Can you look up John 3:16 through 3:17 from the Berean Standard Bible and give me the exact text with the source label?

## When to prefer this

Choose this endpoint when you need exact, verifiable, public-domain Bible text with source attribution — particularly the Berean Standard Bible or World English Bible — rather than a paraphrase or unattributed quote. Ideal for applications requiring citation provenance, such as devotionals, sermons, academic writing, or scripture-grounded AI responses where the translation identity must be confirmed.

## Known failure modes

- Invalid or non-existent book/chapter/verse reference returns an error
- Requesting a translation not in the supported set (BSB or WEB) returns an error
- Malformed request body missing required fields returns a validation error
- Verse range that exceeds the chapter boundary may return an error or truncated result

## How this service works

Retrieve a bounded passage from the public-domain Berean Standard Bible or World English Bible with exact source labels and provenance.

## Output

Returns the requested Bible passage text bounded to the requested verse range, tagged with the source translation (Berean Standard Bible or World English Bible), chapter and verse labels, and provenance metadata confirming the public-domain source.

## 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-scripture-lookup-84b58535/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)
