# Polymarket Smart Money Sheet

> Polymarket Smart Money Sheet is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Returns a ranked sheet of all active Polymarket prediction markets scored by edge, bias, conviction, whale entries, trader skill, and holder concentration, with a verdict and top pick.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-smart-sheet
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-smart-money-sheet-7b347d25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3yrMpCwqF6pxH-tmy0b70

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 polymarket-smart-money-sheet-7b347d25 -d '<json body>'
```

Example prompt: Give me the full smart-money Polymarket sheet right now — I want every active market ranked by edge, whale entries, and conviction, plus your top pick and verdict.

## When to prefer this

Choose this endpoint when you need a pre-computed, multi-signal smart-money analysis of all active Polymarket markets in a single call, rather than querying raw Polymarket APIs and computing edge/conviction/whale signals yourself. Ideal for agents that need a ready-to-act ranked list with a verdict and top pick without building their own scoring pipeline. The auto-refund-on-failure guarantee makes it safe to call in automated workflows.

## Known failure modes

- Upstream Polymarket data unavailable — auto-refund triggered
- No active markets available to rank
- POST body malformed or missing required fields — request rejected
- Service timeout on data aggregation — auto-refund issued
- Payment not settled — request not processed

## How this service works

One call, one ranked smart-money sheet: every active Polymarket market with an edge, scored by bias, conviction, whale entries, trader skill and holder concentration. Verdict + top pick included. Fail-closed critical source, auto-refund on failure.

## Output

A ranked sheet covering every active Polymarket market, each scored across edge, bias, conviction, whale entry signals, trader skill, and holder concentration. Includes an overall verdict and a single top pick recommendation. Auto-refunds on failure (fail-closed).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/polymarket-smart-money-sheet-7b347d25/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
