# Macaroon Network Christian Cross-References

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

Returns ranked Bible cross-reference identifiers from OpenBible.info with passage text resolved from BSB or WEB translations, bounded by a configurable limit.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/christian-cross-references-v1
- Price: $0.005/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-cross-references-348d9764
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m-1veghkFXYzqI-ZB5G9J

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-cross-references-348d9764 -d '<json body>'
```

Example prompt: Find the top 5 ranked Bible cross-references for John 3:16 and show me the passage text from the BSB translation.

## When to prefer this

Choose this endpoint when you need structured, ranked Bible cross-reference data with resolved passage text from permissively-licensed translations (BSB or WEB), especially in agentic workflows where you need clean, machine-readable output rather than scraping a Bible website. Prefer over manual OpenBible.info lookups when you need bounded, ranked results programmatically with text already resolved.

## Known failure modes

- Invalid or unrecognized Bible verse reference format returns an error or empty result
- Requested translation (BSB/WEB) text unavailable for an apocryphal or non-canonical reference
- Exceeding the bounded result limit silently caps results rather than erroring
- Malformed POST body or missing required fields returns a schema validation error
- Network timeout or upstream OpenBible.info data unavailability causes a service error

## How this service works

Return bounded ranked OpenBible.info cross-reference identifiers with displayed text resolved only from BSB or WEB.

## Output

A bounded, ranked list of cross-reference entries sourced from OpenBible.info, each including the cross-reference identifier (book, chapter, verse) and the resolved passage text from either the Berean Standard Bible (BSB) or World English Bible (WEB) translation.

## 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-cross-references-348d9764/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)
