# Macaroon Network – Polymathica Archive Statistics

> Macaroon Network – Polymathica Archive Statistics 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-15).

Returns reproducible aggregate statistics for the sanitized Polymathica archive census, including total row counts, unique hashes, domains, file types, readiness counts, and quarantine counts.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/polymathica-archive-statistics-v1
- Price: $0.001/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-polymathica-archive-statistics-270a475d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5ipgMjGzQJ7OZ3dRL4Hjh

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-polymathica-archive-statistics-270a475d -d '<json body>'
```

Example prompt: Can you pull the aggregate statistics for the Polymathica archive census — I want to see the total row count, unique hashes, domains, file types, readiness counts, and quarantine numbers?

## When to prefer this

Choose this endpoint when you need a fast, reproducible, high-level summary of the entire Polymathica archive rather than individual record lookups or search queries. It is the right choice for audit, reporting, monitoring, or pre-flight checks on the dataset's overall health and scope. Use sibling endpoints for per-record retrieval or filtered searches.

## Known failure modes

- Malformed POST body may return a 400 validation error
- Payment failure or insufficient USDC balance returns a 402 error
- Service unavailability or downstream data store issues may return 503
- Unexpected schema changes in the census backend could cause incomplete statistics

## How this service works

Returns reproducible aggregate statistics for the sanitized Polymathica archive census: 77,053 source rows, unique hashes, domains, file types, readiness and quarantine counts.

## Output

A structured JSON object containing reproducible aggregate statistics for the sanitized Polymathica archive: total source row count (77,053), count of unique content hashes, count of unique domains, file type distribution, readiness state counts, and quarantine counts.

## 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": {
   "summary": {},
   "provenance": {}
  },
  "settled": true,
  "predicate_passed": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macaroon-network-polymathica-archive-statistics-270a475d/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)
