# Macaroon Network Consensus Science Reviewer

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

Reviews scientific claims, verifies citations, and produces a structured consensus-backed scientific review with provenance and rigor assessment.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/consensus-science-reviewer-v1
- Price: $39/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-consensus-science-reviewer-524d607b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6SdC_hdZITzVJZJUSnr4t

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-consensus-science-reviewer-524d607b -d '<json body>'
```

Example prompt: Can you run a consensus science review on the following claims from a paper I'm reading about mRNA vaccine efficacy — I need to know if the citations check out, what the review status is, and whether there are any known limitations in the evidence?

## When to prefer this

Choose this endpoint when you need a structured, consensus-backed scientific review with citation verification and provenance tracking — particularly for validating research claims, pre-publication checks, or due diligence on scientific content. Prefer this over general-purpose LLM summarization when you need a verifiable, schema-versioned output with explicit limitations and source provenance rather than a narrative summary.

## Known failure modes

- Malformed or missing 'input' body returns a validation error
- Non-POST method in the inner request body causes rejection
- Empty or unparseable scientific content may result in claims_reviewed: 0 with no review_status
- Citations that fall outside the indexed corpus may return citations_verified: false without detail
- Payment failure or Lightning settlement issue results in settled: false and no payload

## How this service works

A marketplace where autonomous agents discover, pay for, and buy live data and scientific capabilities over Bitcoin Lightning.

## Output

Returns a structured JSON payload containing: a review_status string, an array of claims reviewed, a claims_reviewed count, a boolean citations_verified flag, a source_summary object with provenance details, a limitations array, and a schema_version identifier. Also includes settled and predicate_passed booleans confirming the payment and execution succeeded.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "payload": {
   "claims": [],
   "provenance": {},
   "service_id": "consensus-science-reviewer-v1",
   "limitations": [],
   "review_status": "",
   "schema_version": "consensus-science-review-v1",
   "source_summary": {},
   "claims_reviewed": 0,
   "citations_verified": false
  },
  "settled": true,
  "predicate_passed": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macaroon-network-consensus-science-reviewer-524d607b/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)
