# Moltalyzer Polymarket Research

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

Provides LLM-analyzed research on a specific Polymarket prediction market, including thesis, risks, whale sentiment, and a confidence-rated bottom line.

## Facts

- Endpoint: GET https://api.moltalyzer.xyz/api/polymarket/research
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moltalyzer-polymarket-research-69971a74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5MmezuCFfsMIGaItQWgFg

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-research-69971a74
```

Example prompt: Can you pull up the Moltalyzer research analysis for the Polymarket market 'will-trump-be-president-2024' and tell me the thesis, key risks, whale view, and what the bottom line confidence rating is?

## When to prefer this

Use this endpoint when you need a structured, LLM-synthesized research brief on a specific Polymarket prediction market — including thesis, risks, whale behavior, and a confidence-rated bottom line — rather than raw price/probability data alone. Prefer this over raw signal endpoints when you want interpretive analysis ready to act on.

## Known failure modes

- Invalid or unknown market slug returns error or empty result
- Market slug not found on Polymarket returns no data
- Rate limit exceeded — only 2 calls/day on free tier, paid calls at $1 USDC
- Payment not processed via x402 results in 402 response
- Polymarket data temporarily unavailable causes stale or failed analysis

## How this service works

Single-market deep-dive research: for any Polymarket market (?market=<slug>), a synthesized analysis of 7-day price action, live order book, tracked-whale positioning with calibration, and related international news — thesis, risks, and an actionable bottom line. Generated on demand (10-60s); cached 30 minutes.

## Output

Returns a JSON object with the market slug and question, plus an analysis block containing: a thesis string, array of risk factors, whale view summary, bottom-line recommendation, and a confidence level (e.g. 'medium').

## 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": [
      "market"
     ],
     "properties": {
      "market": {
       "type": "string",
       "description": "Polymarket market slug (from polymarket.com/market/<slug> or our feed items)"
      }
     }
    }
   },
   "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-research-69971a74/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)
