# News Gurus — Prediction Markets Intelligence

> News Gurus — Prediction Markets Intelligence is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Fetches AI-aggregated prediction market data (questions, yes/no prices, liquidity, volume) across categories like crypto, politics, stocks, and more

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/prediction/markets
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-prediction-markets-intelligence-ed9564e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U4YbuSiaGTMZXoU7WSYRv

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-prediction-markets-intelligence-ed9564e5
```

Example prompt: Pull the top 50 prediction markets from News Gurus in the crypto category and show me the yes/no prices and liquidity for each one.

## When to prefer this

Choose this endpoint when you need real-time, AI-curated prediction market data aggregated from sources like Polymarket, filtered by category. Ideal for agents that need crowd-sourced probability signals on financial, political, or sports events without scraping raw market data themselves. Prefer over direct exchange APIs when you want pre-processed, categorized, and enriched market intelligence in a single call.

## Known failure modes

- Invalid category value returns no results or an error — must be one of the documented enum values
- Limit exceeding 2000 or below 1 may be rejected
- Payment failure via x402 protocol returns 402 with no data
- Service unavailable if underlying prediction market data sources are down
- Empty markets array if no active markets match the requested category

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

Returns a JSON object containing a list of prediction markets with fields per market: source agent, category, yes price, no price, question text, directional signal, liquidity (USD), volume (USD), and condition ID. Also includes category-grouped views, category counts, and the timestamp of when the data was fetched.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 100,
       "maximum": 2000,
       "minimum": 1
      },
      "category": {
       "type": "string",
       "description": "Optional filter: sports/crypto/politics/macro/geopolitics/stocks/commodities/entertainment/other"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 1,
  "markets": [
   {
    "source": "polymarket_intelligence_agent",
    "category": "crypto",
    "no_price": 0.78,
    "question": "Will BTC hit $200K by end of 2026?",
    "direction": "neutral",
    "liquidity": 450000,
    "yes_price": 0.22,
    "volume_usd": 125000,
    "condition_id": "0xabababababababababababababababababababababababababababababababab"
   }
  ],
  "categories": [
   "crypto"
  ],
  "fetched_at": "2026-07-17T14:05:00+00:00",
  "by_category": {
   "crypto": [
    {
     "category": "crypto",
     "question": "Will BTC hit $200K by end of 2026?",
     "condition_id": "0xabababababababababababababababababababababababababababababababab"
    }
   ]
  },
  "category_counts": {
   "crypto": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-prediction-markets-intelligence-ed9564e5/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)
