# Moltalyzer Polymarket Insider Detection Historical Digests

> Moltalyzer Polymarket Insider Detection Historical Digests is a paid API for AI agents from api.moltalyzer.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Retrieves a paginated list of historical Polymarket insider detection digests with associated signals

## Facts

- Endpoint: GET https://api.moltalyzer.xyz/api/polymarket/all
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moltalyzer-polymarket-insider-detection-historical-digests-a268eb97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T82Hw2ByWr4U1P63Qw4rB

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-insider-detection-historical-digests-a268eb97
```

Example prompt: Pull the last 10 historical Polymarket insider detection digests from Moltalyzer, filtering for only high confidence signals, starting after index 50.

## When to prefer this

Use this endpoint when you need to review multiple historical Polymarket insider detection events for trend analysis, backtesting, or polling for new signals since a known index. Prefer this over the latest-digest endpoint when you need more than the single most recent digest or want to paginate through history.

## Known failure modes

- Invalid count parameter outside 1-20 range returns validation error
- Invalid confidence filter value returns error
- No digests available returns empty data array
- Payment not processed returns 402 Payment Required
- Rate limiting or upstream data unavailability returns 5xx error

## How this service works

Get historical Polymarket insider detection digests

## Output

Returns a JSON object with a data array of historical insider detection digests (each containing a digest with a title and associated signals array), a count of results returned, and a success boolean flag.

## 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",
     "properties": {
      "type": {
       "type": "string",
       "description": "Optional filter: mover, whale_entry, or predetermined"
      },
      "count": {
       "type": "integer",
       "default": 10,
       "description": "Max items to return (1-20)"
      },
      "since": {
       "type": "integer",
       "description": "Get items after this feed index (poll pattern: store last seen index, pass as since)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "digest": {
     "title": "..."
    },
    "signals": []
   }
  ],
  "count": 3,
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moltalyzer-polymarket-insider-detection-historical-digests-a268eb97/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)
