# SignalPulse Prediction Market Scanner

> SignalPulse Prediction Market Scanner is a paid API for AI agents from signalpulse.theaslangroupllc.com, paid per call via x402, $2/call, status unknown (last checked 2026-09-14).

Returns calibrated superforecaster analysis of prediction markets across Polymarket, Kalshi, Manifold, and PredictIt including cross-venue divergence, order-book/whale flow, base-rate priors, de-vigged sportsbook consensus, and mispriced market identification.

## Facts

- Endpoint: GET https://signalpulse.theaslangroupllc.com/api/scan/predmarket
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-prediction-market-scanner-ec325161
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_02RkUFlEv_m6_FlRkYuJv

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 signalpulse-prediction-market-scanner-ec325161
```

Example prompt: Scan all active prediction markets across Polymarket, Kalshi, Manifold, and PredictIt right now and tell me which ones are most mispriced — I want to see the cross-venue divergence, any whale flow signals, and your calibrated probability edge for each.

## When to prefer this

Choose this endpoint when you need a cross-venue, superforecaster-calibrated read of prediction markets with explicit edge quantification and whale-flow signals. It is preferable over raw market data APIs because it synthesizes Polymarket, Kalshi, Manifold, and PredictIt into a single actionable analysis with base-rate priors and sportsbook de-vigging for sports markets. Best when looking for arbitrage or mispricing across venues.

## Known failure modes

- No active markets found matching the query — returns empty result set
- Payment failure via x402 — returns 402 Payment Required
- Rate limit exceeded — returns 429 Too Many Requests
- Venue data unavailable — partial results with caveat noting missing venue
- Invalid query parameters — returns 400 Bad Request

## How this service works

Calibrated superforecaster read of prediction markets across Polymarket, Manifold and PredictIt: cross-venue divergence, order-book/whale flow, base-rate priors, and for sports the de-vigged sportsbook consensus plus proprietary team-strength and weather engines. Full analysis, probabilities, edge and commentary on every mispriced market — props included.

## Output

A full analysis report covering active prediction markets across multiple venues, including calibrated probability estimates, identified mispriced markets, cross-venue divergence signals, order-book and whale flow insights, base-rate priors, de-vigged sportsbook consensus where applicable, and commentary on each notable edge opportunity — with props included.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "horizon": {
       "type": "string",
       "description": "short | mid | long (default: mid)"
      },
      "category": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "agent_analysis",
  "category": "sports",
  "scan_summary": "Futures books are sharp; one Polymarket longshot is trading rich vs the de-vigged consensus.",
  "no_edge_markets": [
   {
    "question": "Will Team Y make the playoffs?",
    "market_yes_pct": 61,
    "reason_no_edge": "Within 10 points of the de-vigged book consensus; efficiently priced.",
    "our_yes_estimate_pct": 58
   }
  ],
  "value_opportunities": [
   {
    "edge_pct": 7,
    "question": "Will Team X win the title?",
    "direction": "NO",
    "rationale": "De-vigged sportsbook consensus implies ~15%; favourite–longshot bias is inflating the Polymarket price; our xG/Elo engine agrees the side is overvalued...",
    "confidence": "medium",
    "volume_usd": 480000,
    "days_to_close": 21,
    "market_yes_pct": 22,
    "risk_to_thesis": "A key injury could reprice both books.",
    "key_data_points": [
     "de-vigged book 15%",
     "Polymarket 22%",
     "$480k volume"
    ],
    "our_yes_estimate_pct": 15
   }
  ],
  "intelligence_nodes_active": [
   "Cross-venue divergence",
   "Sportsbook de-vigged consensus",
   "Proprietary team-strength engine"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalpulse-prediction-market-scanner-ec325161/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalpulse.theaslangroupllc.com](https://www.zero.xyz/host/signalpulse.theaslangroupllc.com/llms.txt)
