News Gurus Intel API — Polymarket smart-money leaderboard: whale wallets ranked by informe
News Gurus Intel API — Polymarket smart-money leaderboard: whale wallets ranked by informed score, win rate, realized PnL or volume, with specialization and average entry odds. Insider/algo detection per-call — elsewhere this data class sits behind $599/mo API plans. Educational data, not financial advice.
100000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-01
updated
Provider
api.newsgurus.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xa9a38639Ed4Aebc04092E21F3399c56545450713",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 20,
"min_bets": 5,
"sort_by": "informed_score"
},
"type": "http"
},
"output": {
"example": {
"fetched_at": "2026-07-15T14:00:00+00:00",
"sort_by": "informed_score",
"total": 1,
"wallets": [
{
"address": "0xabc...",
"informed_score": 0.82,
"specialization": "politics",
"total_bets": 96,
"total_pnl_usdc": 184220.5,
"win_rate": 0.71
}
]
},
"type": "json"
}
},
"routeTemplate": "/x402/prediction/whale-leaders",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"min_bets": {
"default": 5,
"minimum": 0,
"type": "integer"
},
"sort_by": {
"default": "informed_score",
"enum": [
"informed_score",
"win_rate",
"total_pnl_usdc",
"total_volume"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.newsgurus.ai/x402/prediction/whale-leaders" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.newsgurus.ai/x402/prediction/whale-leaders");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.newsgurus.ai/x402/prediction/whale-leaders")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7355.json, and this resource appears in /discovery/resources and /discovery/search.