# News Gurus Sports Props Edge API

> News Gurus Sports Props Edge API 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-15).

Returns AI-scored sports player prop bets with edge percentage, fair probability, and confidence scores to identify market inefficiencies

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/sports/props
- 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/news-gurus-sports-props-edge-api-ed4997bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zC1kMozYFwT6SQ57_3gaN

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-sports-props-edge-api-ed4997bd
```

Example prompt: Pull the top 25 MLB player props from News Gurus where the AI has found the biggest edge over market probability — I want to see which ones are over or under, the confidence score, and the edge percentage.

## When to prefer this

Use this endpoint when you need real-time AI-analyzed sports player prop bets with quantified edge over market pricing. Prefer this over raw odds feeds when you want pre-computed fair probability vs market probability comparisons and confidence scores, especially for MLB or multi-sport prop arbitrage workflows. Best for agents that need actionable, ranked signals rather than raw odds data.

## Known failure modes

- limit parameter out of range (1-50) returns validation error
- payment not included or insufficient USDC results in 402 Payment Required
- no props currently available returns empty props array
- stale data if AI agents haven't refreshed recently
- network timeout for real-time data fetch

## 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

A JSON array of up to 50 player prop entries, each containing: player name, sport, stat type, line, direction (over/under), edge percentage, fair probability, market probability, confidence score (0-1), tags, and timestamp. Also includes a total count and a fetched_at timestamp.

## 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
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "props": [
   {
    "line": "0.5",
    "tags": [
     "mlb",
     "hr"
    ],
    "sport": "mlb",
    "title": "Judge HR edge vs LHP",
    "player": "Judge, Aaron",
    "edge_pct": 8.4,
    "entry_id": "sp1",
    "direction": "over",
    "fair_prob": 0.19,
    "stat_type": "home_runs",
    "timestamp": "2026-07-17T10:00:00",
    "confidence": 0.72,
    "market_prob": 0.175
   }
  ],
  "total": 1,
  "fetched_at": "2026-07-17T14:05:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-sports-props-edge-api-ed4997bd/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)
