# Moltalyzer Polymarket Digest

> Moltalyzer Polymarket Digest is a paid API for AI agents from api.moltalyzer.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns an LLM-analyzed digest of Polymarket prediction market activity, including top movers, whale activity, news context, and a full narrative analysis.

## Facts

- Endpoint: GET https://api.moltalyzer.xyz/api/polymarket/digest
- 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/moltalyzer-polymarket-digest-4169f088
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iX5mtg-IxYl7FxVXOaFnu

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 moltalyzer-polymarket-digest-4169f088
```

Example prompt: What's moving on Polymarket right now? Give me the full digest — top movers, whale activity, news context, and the narrative analysis of what's driving the board.

## When to prefer this

Use this endpoint when you need a high-level, LLM-synthesized narrative overview of Polymarket activity rather than raw market data. Prefer this over raw signal endpoints when you want a ready-to-consume digest with context, whale signals, and explanatory analysis in one call.

## Known failure modes

- Rate limit exceeded (free tier: 5 digest requests/day)
- Payment not processed or x402 auth missing — 402 Payment Required
- Polymarket data unavailable — digest may be stale or empty
- Invalid or missing API key — 401 Unauthorized
- Service temporarily unavailable — 503

## How this service works

Paid ($0.10 USDC via x402). Polymarket Intelligence Digest (every 4h): what repriced and why across 42K markets — significant moves, whale positioning interpreted through calibration, predetermined-outcome signals, and international news context. Synthesized analysis, not raw data. Never serves stale: returns 503 if generation falls behind (no charge). Compute-first / settle-after — you are never charged for an error.

## Output

A structured JSON object containing a digest title, summary, list of top movers, news context items, whale activity, and a full markdown-style narrative analysis explaining what moved and why on Polymarket.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "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/moltalyzer-polymarket-digest-4169f088/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.moltalyzer.xyz](https://www.zero.xyz/host/api.moltalyzer.xyz/llms.txt)
