# Moltalyzer Polymarket Signal API

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

Returns real-time trading signals, outcome probabilities, and trend indicators for Polymarket prediction markets

## Facts

- Endpoint: GET https://api.moltalyzer.xyz/api/polymarket/signal
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-moltalyzer-xyz-6930ef24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HzJPuoJuLeX2U2HASDCt5

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-6930ef24
```

Example prompt: Pull the latest Polymarket trading signal from Moltalyzer — I want to see the current outcome probabilities, confidence level, and reasoning for the most recent market signal.

## When to prefer this

Use this endpoint when you need real-time, pre-analyzed Polymarket trading signals with embedded reasoning and confidence scores rather than raw market data. Ideal for agents that need to make or recommend prediction market trades, monitor market movements, or inform users about current probability estimates with explanatory context. Choose this over raw Polymarket API access when you want pre-packaged signal intelligence including insider type classification and knowledge holder attribution.

## Known failure modes

- Invalid or out-of-range signal index returns an error or empty result
- Network or upstream Polymarket data unavailability causes stale or missing signals
- Payment failure (HTTP 402) if USDC payment is not included or insufficient
- Rate limiting if too many requests are made in a short window

## How this service works

Delivers real-time signals and probability metrics for Polymarket markets, including outcome probabilities and trend indicators.

## Output

Returns a JSON object containing the signal's unique ID, Polymarket market ID, market question, outcome prices (probabilities for each outcome), confidence level, reasoning narrative, signal index number, insider type classification, knowledge holder description, market liquidity and volume figures, category, creation timestamp, and end date.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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": {
      "index": {
       "type": "integer",
       "description": "Specific feed index. Omit for latest."
      }
     }
    }
   },
   "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-6930ef24/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)
