# Moltalyzer Polymarket Resolving Markets

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

Returns active Polymarket markets resolving within a specified time horizon (1-72 hours), with current odds, convergence state, liquidity, and order-book microstructure

## Facts

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

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-resolving-markets-e55e4090
```

Example prompt: Show me all Polymarket markets resolving within the next 12 hours that have at least $10,000 in liquidity — I want to see which ones are still contested vs converged, along with the current odds.

## When to prefer this

Use this endpoint when you need to identify Polymarket prediction markets approaching resolution and want to evaluate trading opportunities based on convergence state, liquidity depth, and order-book dynamics. Prefer this over generic Polymarket signal endpoints when the specific use case is time-to-expiry filtering and near-expiry microstructure analysis.

## Known failure modes

- withinHours outside 1-72 range returns a 400 error
- minLiquidity below 1000 returns a 400 validation error
- No markets found in the specified window returns an empty list
- Payment not included or invalid x402 payment returns 402 Payment Required
- Service unavailable or Polymarket API outage returns 503

## How this service works

Markets resolving soon: active Polymarket markets whose event ends within ?withinHours (1-72, default 24), with current odds, convergence state (converged vs contested), liquidity, and order-book microstructure for the nearest expiries. Mechanical short-interval markets (5-min crypto up/down etc.) excluded by default — ?includeNoise=1 to include. End dates are event-level and Polymarket-scheduled.

## Output

A list of active Polymarket markets expiring within the requested horizon, each with current outcome probabilities, convergence/contested status, USD liquidity, and order-book microstructure data for the nearest expiries. Short-interval mechanical markets (e.g. 5-min crypto up/down) are excluded by default.

## 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": {
      "withinHours": {
       "type": "integer",
       "default": 24,
       "description": "Horizon in hours (1-72)"
      },
      "includeNoise": {
       "type": "string",
       "description": "Set to 1 to include mechanical short-interval markets (5-min crypto up/down, daily price markets)"
      },
      "minLiquidity": {
       "type": "number",
       "default": 5000,
       "description": "Liquidity floor in USD (>=1000)"
      }
     }
    }
   },
   "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-resolving-markets-e55e4090/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)
