# Polymarket Position Holders Intelligence

> Polymarket Position Holders Intelligence is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Returns skill-ranked trader position data for Polymarket markets, including YES/NO concentration, holder skill distribution, and largest open positions as a leading indicator for resolution.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-position-holders
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-position-holders-intelligence-5dbe5560
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8_F9VQjuIwjIDKzONici5

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-position-holders-intelligence-5dbe5560 -d '<json body>'
```

Example prompt: Show me where skill-ranked traders are holding large open positions on the Polymarket market for 'Will the Fed cut rates in September 2025?' — I want to see the YES/NO concentration and which side the highest-skill holders are on.

## When to prefer this

Use this endpoint when you need to understand where skilled or high-conviction traders are positioned on a specific Polymarket market, especially to generate a leading indicator signal for likely resolution direction. Prefer this over raw Polymarket API calls when you need skill-ranked holder segmentation rather than raw position lists.

## Known failure modes

- Invalid or unknown Polymarket market ID returns an error or empty result
- Market has too few holders to generate meaningful skill distribution
- Rate limit or payment failure returns 402 or 429 status
- Stale data if market is illiquid or recently created
- Market already resolved — positions may be settled and unavailable

## How this service works

Polymarket position holders intelligence. Where do skill-ranked traders hold large open positions right now? Per-market YES/NO concentration, holder skill distribution, largest positions. Leading indicator for resolution. $0.07/call. Keywords: polymarket, position-holders, leading-indicator, intelligence.

## Output

Returns per-market YES/NO position concentration data, a distribution of holders by skill rank, the largest open positions with holder addresses and sizes, and an aggregated intelligence signal usable as a leading indicator for market resolution.

## Example request

```json
{
 "input": {
  "body": {
   "limit": 10,
   "marketId": "0x123abc"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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-position-holders-intelligence-5dbe5560/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)
