# Macaroon Network Christian Salvation Guide

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

Returns a deterministic set of source-labelled passages and reflection steps about Christian salvation from canonical scriptural sources.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/christian-salvation-guide-v1
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-christian-salvation-guide-6110a7fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nUfO1XDpshMIBxvFZxhWm

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-salvation-guide-6110a7fd -d '<json body>'
```

Example prompt: Can you pull up a structured guide on Christian salvation with source-labelled scripture passages and reflection steps? I want to see what canonical texts say about being saved.

## When to prefer this

Choose this endpoint when you need a deterministic, reproducible set of scripture passages and reflection steps specifically about Christian salvation, with clear source attribution. Prefer it over general Bible search endpoints when the goal is a curated multi-passage reflection guide rather than a single verse lookup, and over generative AI theology endpoints when source fidelity and labelling matter.

## Known failure modes

- Malformed POST body results in a 400 validation error
- Payment not completed via x402 protocol returns a 402 Payment Required response
- Service unavailable or timeout if the API is temporarily down
- Empty or missing 'input' object in body returns schema validation failure

## How this service works

Return a deterministic set of source-labelled passages and reflection steps about salvation. The service neither confers nor certifies salvation.

## Output

A deterministic, structured response containing source-labelled scripture passages drawn from canonical texts alongside step-by-step reflection prompts about Christian salvation. The service explicitly does not confer or certify salvation itself — it delivers curated, labelled reference content.

## 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-salvation-guide-6110a7fd/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)
