# Polymarket Smart-Money Bias Signals

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

Returns skill-ranked trader positioning signals (YES/NO volume split, conviction score) for a given Polymarket prediction market

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-smart-bias
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-smart-money-bias-signals-c881b900
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VKnTbiUo0a0MrjxpiwOM1

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-bias-signals-c881b900 -d '<json body>'
```

Example prompt: What's the smart-money bias on Polymarket right now for the 2024 US election market — show me where skill-ranked traders are positioning, the YES/NO volume split, and the conviction score.

## When to prefer this

Use this endpoint when you need to understand where skilled, high-performing Polymarket traders are positioning — not just raw volume — to filter out noise from low-skill participants. Prefer this over raw Polymarket API calls when conviction scoring and skill-ranking matter, especially for politics, crypto, sports, or macro event markets.

## Known failure modes

- Invalid or unknown Polymarket market ID returns an error response
- Market category not recognized returns a validation error
- Insufficient smart-money trader data for a thinly traded market returns low-confidence or empty signal
- Payment failure (insufficient USDC balance) blocks the call
- Network timeout from Polymarket data source returns a 5xx error

## How this service works

Polymarket smart-money bias signals. Where are skill-ranked traders positioning per market? YES/NO volume split, conviction score, category-aware. Politics + crypto + sports + macro. $0.05/call. Keywords: polymarket, prediction-markets, smart-money, bias, signal.

## Output

Returns the YES/NO volume split among skill-ranked traders, a conviction score indicating confidence of smart-money positioning, and a bias signal — all category-aware (politics, crypto, sports, macro) for the specified Polymarket market.

## Example request

```json
{
 "marketId": "0x123abc456def789ghi",
 "includeConvictionScore": true
}
```

## 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-bias-signals-c881b900/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)
