# Moltalyzer Polymarket Trading Signals

> Moltalyzer Polymarket Trading Signals 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-15).

Returns real-time and aggregated trading signals with confidence levels for Polymarket prediction markets

## Facts

- Endpoint: GET https://api.moltalyzer.xyz/api/polymarket/signals
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-moltalyzer-xyz-babdda06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jxZJa82l3o5Iiob0zcqTw

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 api-moltalyzer-xyz-babdda06
```

Example prompt: Give me the latest 10 Polymarket trading signals filtered to high confidence only — I want to see what markets have actionable signals right now.

## When to prefer this

Use this endpoint when you need real-time or aggregated trading signals specifically for Polymarket prediction markets, especially when building polling workflows (using the 'since' index) or filtering by signal confidence level. Prefer this over general market data APIs when you need pre-computed signal analytics rather than raw price/probability data.

## Known failure modes

- Invalid count parameter outside 1-20 range returns error
- Invalid confidence filter value returns error
- No signals available since specified index returns empty list
- Payment failure (x402) if USDC not provided
- Rate limiting or upstream Polymarket data unavailability

## How this service works

Returns real-time and aggregated trading signals for Polymarket prediction markets to inform trading and analytics.

## Output

A list of up to 20 trading signals for Polymarket prediction markets, each including confidence level, probability metrics, and outcome data. Supports polling via a 'since' index to retrieve only new signals since the last call.

## 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": {
      "type": {
       "type": "string",
       "description": "Filter: mover, whale_entry, or predetermined."
      },
      "count": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1,
       "description": "Max items (1-20, default 10)."
      },
      "since": {
       "type": "integer",
       "description": "Feed index to fetch items after (poll pattern)."
      }
     }
    }
   },
   "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/api-moltalyzer-xyz-babdda06/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)
