# polynews.news Smart Money Deep Analysis

> polynews.news Smart Money Deep Analysis is a paid API for AI agents from polynews.news, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Combines smart money wallet analysis with automatic profiling of the top N suspicious or notable wallets in a single API call, at 9% lower cost than calling the endpoints separately.

## Facts

- Endpoint: POST https://polynews.news/api/v1/smart-money-deep
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polynews-news-4f6d1cdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OYgwWmHRzzyEks4CpE-Qq

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 polynews-news-4f6d1cdb -d '<json body>'
```

Example prompt: Run a deep smart money analysis on the Polymarket market for 'Will the Fed cut rates in September?' and auto-profile the top 5 suspicious or notable wallets trading it — I want to see insider signals, sharp scores, and wallet P&L all in one shot.

## When to prefer this

Choose this endpoint when you need both broad smart money signals AND detailed wallet-level profiles for a specific prediction market in one call. It is more cost-efficient (9% cheaper) than calling the smart-money and wallet endpoints separately, and eliminates latency from sequential calls. Ideal for agents doing deep due diligence on a market before taking a position or flagging insider activity.

## Known failure modes

- Invalid or unrecognized market ID returns an error or empty results
- N value out of range may return an error or default fallback
- Payment failure (x402) if USDC balance is insufficient
- Market not found on Polymarket returns empty wallet/signal data
- Network timeout if on-chain data fetch is slow

## How this service works

Smart money analysis + auto-profiles top N suspicious/notable wallets in one call. 9% cheaper than calling smart-money + wallet individually.

## Output

Returns combined smart money analysis (suspicious wallet detection, holder positions, insider signals, trade patterns, sentiment) plus detailed profiles of the top N wallets (sharp score, badges, top trades, P&L metrics) for the queried market, delivered in a single response at a 9% discount over calling both endpoints separately.

## 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"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "topN": {
         "type": "number"
        },
        "smartMoney": {
         "type": "object"
        },
        "walletProfiles": {
         "type": "array"
        },
        "walletsProfiled": {
         "type": "number"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "topN": 3,
   "marketId": "69317",
   "smartMoney": {
    "signals": [
     "unusual-volume-spike",
     "concentrated-buy-side"
    ],
    "sentiment": "bullish",
    "suspiciousWallets": [
     {
      "signal": "early-mover",
      "address": "0xa1b2...c3d4"
     }
    ]
   },
   "walletProfiles": [
    {
     "address": "0xa1b2...c3d4",
     "winRate": 0.71,
     "topTrade": "Bitcoin $100K by EOY 2025 (+$42K)",
     "sharpScore": 91,
     "totalPnlUsd": 124500
    },
    {
     "address": "0xe5f6...7890",
     "winRate": 0.64,
     "topTrade": "Trump 2024 win (+$18K)",
     "sharpScore": 78,
     "totalPnlUsd": 58200
    },
    {
     "address": "0xab12...cd34",
     "winRate": 0.69,
     "topTrade": "Fed 50bps cut Sept 2024 (+$24K)",
     "sharpScore": 82,
     "totalPnlUsd": 96100
    }
   ],
   "walletsProfiled": 3
  },
  "meta": {
   "tier": "alpha",
   "version": "v1",
   "endpoint": "/api/v1/smart-money-deep",
   "latencyMs": 12800,
   "timestamp": "2026-05-12T04:30:00.000Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polynews-news-4f6d1cdb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polynews.news](https://www.zero.xyz/host/polynews.news/llms.txt)
