# News Gurus Intel API — Multi-Sport Prop-Bet Edge Scan

> News Gurus Intel API — Multi-Sport Prop-Bet Edge Scan is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Scans MLB, NBA, and NFL player prop bets for edges, returning NG-derived edge percentage, confidence scores, reasoning, and recommended actions (STRONG_PLAY/PLAY/MONITOR/SKIP) from the live Kalshi executor ledger and player-prop intelligence agent.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/sports/edge-scan
- Price: $0.008/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-intel-api-multi-sport-prop-bet-edge-scan-11b134a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hFOPqgvl3r7nUa5H9VTvC

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-multi-sport-prop-bet-edge-scan-11b134a8
```

Example prompt: Scan all sports right now and show me up to 25 prop bet edges — I want the edge percentage, confidence, reasoning, and whether each is a STRONG_PLAY, PLAY, MONITOR, or SKIP.

## When to prefer this

Choose this endpoint when you need a broad, multi-sport sweep of prop-bet edges with explicit recommended actions and reasoning in a single call. It differs from the sibling player-prop endpoint by aggregating across MLB, NBA, and NFL simultaneously using the live Kalshi executor ledger in addition to the player-prop intelligence agent, making it better for cross-sport comparison and triage workflows.

## Known failure modes

- No props available for a filtered sport (e.g. NBA out of season) — returns empty list
- Invalid sport filter value — likely 400 error or ignored filter
- limit parameter outside 1-50 range — clamped or rejected
- Payment failure (x402 protocol) — 402 response if USDC payment not provided
- Stale data if the Kalshi executor ledger is temporarily unavailable

## How this service works

News Gurus Intel API — multi-sport prop-bet edge scan: NG-derived edge_pct, confidence, reasoning and recommended_action (STRONG_PLAY/PLAY/MONITOR/SKIP) across MLB, NBA, NFL props from the live Kalshi executor ledger and the player-prop intelligence agent. Model-owned fields only. Optional ?sport= filter (mlb/nba/nfl). Educational data, not financial advice.

## Output

A list of up to 50 prop bet opportunities across MLB, NBA, and/or NFL, each with: NG-derived edge percentage (edge_pct), a confidence score, human-readable reasoning for the edge, and a recommended action label (STRONG_PLAY, PLAY, MONITOR, or SKIP) derived from the live Kalshi executor ledger and player-prop intelligence agent.

## 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": 25,
       "maximum": 50,
       "minimum": 1
      },
      "sport": {
       "type": "string",
       "description": "Optional filter: mlb, nba, nfl (omit for all)"
      }
     },
     "additionalProperties": false
    }
   },
   "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-multi-sport-prop-bet-edge-scan-11b134a8/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)
