# Macaroon Network Christian Scripture Reading Plan

> Macaroon Network Christian Scripture Reading Plan 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).

Retrieves a single day's reading from a deterministic 7-day Bible reading plan (gospel, psalm-prayer, or practical-wisdom track) with source-labelled public-domain scripture text.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/christian-scripture-reading-plan-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-scripture-reading-plan-5c23bb44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6N9tAE7T8ww5c6OEaSuug

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-reading-plan-5c23bb44 -d '<json body>'
```

Example prompt: Can you get me the gospel reading for day 3 of the 7-day scripture reading plan, using the public-domain Bible text with source labels?

## When to prefer this

Choose this endpoint when you need a deterministic, reproducible daily Bible reading from a structured 7-day plan with explicit public-domain source labelling, and when you require a choice of gospel, psalm-prayer, or practical-wisdom reading tracks. Prefer this over generic Bible API lookups when you need structured plan-based delivery (day 1–7) rather than arbitrary passage retrieval, or when compliance with public-domain source attribution is important.

## Known failure modes

- Invalid or missing track type returns an error indicating required field
- Day index out of range (outside 1-7) results in a validation error
- Malformed request body causes a 400-level HTTP error
- Payment failure via x402 protocol blocks access and returns a payment-required response
- Network timeout if the API is temporarily unavailable

## How this service works

Retrieve one bounded day from a deterministic seven-day gospel, psalm-prayer, or practical-wisdom reading plan using source-labelled public-domain Bible text.

## Output

A single bounded day's scripture passage from the requested track (gospel, psalm-prayer, or practical-wisdom), drawn from deterministic public-domain Bible text, with source attribution labels indicating the Bible translation or edition used. The response is structured and consistent across repeated calls for the same day and track.

## 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-reading-plan-5c23bb44/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)
