# News Gurus Intel API — Polymarket Market Wallet Intelligence

> News Gurus Intel API — Polymarket Market Wallet Intelligence is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns aggregate wallet intelligence for a single Polymarket prediction market by condition_id, including unique wallet counts, buy/sell volume split, new-wallet statistics, and the top-10 buyers.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/prediction/market-stats/:hash
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-intel-api-polymarket-market-wallet-intelligence-fc821746
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BIrSwrfUhRnG6dYNE9yL0

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 news-gurus-intel-api-polymarket-market-wallet-intelligence-fc821746
```

Example prompt: Pull the wallet intelligence for Polymarket market condition 0xabc123... — I want to see how many unique wallets are active, the buy vs sell volume split, what share of volume comes from new wallets, and who the top 10 buyers are.

## When to prefer this

Use this endpoint when you need a compact, single-call summary of wallet-level activity for a specific Polymarket prediction market — particularly when you want to assess buyer concentration, new wallet inflow, or identify the top participants without querying raw blockchain data. Prefer this over the full market landscape endpoint when you already have a condition_id and want deep wallet analytics rather than odds or category data.

## Known failure modes

- Invalid or unknown condition_id returns a 404 or empty result
- Market with no trading activity may return zero-value metrics
- Payment not processed results in 402 Payment Required
- Malformed condition_id hash causes a 400 Bad Request
- Temporary data unavailability from upstream Polymarket data source may cause 503 or stale data

## How this service works

News Gurus Intel API — aggregate wallet intelligence for one Polymarket market (by condition_id): unique wallets, buy/sell volume split, new-wallet count and volume share, and the top-10 buyers. Educational data, not financial advice.

## Output

Returns structured wallet intelligence for the specified Polymarket market: total unique wallet count, buy and sell volume figures and their split, number of new/first-time wallets and their share of total volume, and a ranked list of the top 10 buyers by volume. All data is educational and not financial advice.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "condition_id"
     ],
     "properties": {
      "condition_id": {
       "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/news-gurus-intel-api-polymarket-market-wallet-intelligence-fc821746/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
