# News Gurus MLB Props Sheet

> News Gurus MLB Props Sheet is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $5/call, status unknown (last checked 2026-09-14).

Returns AI-generated MLB player prop recommendations, game predictions, and betting edges for a given date, including home run probabilities, strikeout plays, and F5 bets.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/mlb/props-sheet
- Price: $5/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-mlb-props-sheet-6905a0e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oDc2PXowAI8AsuBNLKN_7

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-mlb-props-sheet-6905a0e5
```

Example prompt: Pull up today's MLB props sheet — I want to see the top home run picks, strikeout plays, and any high-conviction edges for tonight's slate.

## When to prefer this

Choose this endpoint when you need a comprehensive, AI-curated daily MLB player props sheet with conviction scores, edge percentages, and game predictions all in one call. Prefer it over generic sports data APIs when you want pre-analyzed, actionable betting signals rather than raw statistics. It is particularly well-suited for sports betting agents that need ready-to-use recommendations without having to run their own probability models.

## Known failure modes

- No MLB games scheduled on requested date — slate may return empty arrays with available:false
- Invalid date format returns a 400 error
- No data yet available for future dates beyond the model's horizon
- Payment required (402) if x402 payment header is missing or insufficient
- Rate limiting if called too frequently

## 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 object containing: a slate thesis summary, top home run picks with tier rankings and conviction scores (1-10), top home run rate plays, F5 plays, top starting pitcher strikeout plays, risk flags, best matchups, per-game prop breakdowns with edge percentages and fair probabilities, and per-game win probability and projected score predictions. Also includes a fetched_at timestamp and availability flag.

## 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": {
      "date": {
       "type": "string",
       "description": "YYYY-MM-DD or 'today' (default)"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-14",
  "slate": {
   "thesis": "...",
   "top_hr": [
    {
     "team": "PHI",
     "tier": "T2",
     "player": "K. Schwarber",
     "conviction": 6,
     "recommendation": "PLAY",
     "hr_prob_per_game": 0.11
    }
   ],
   "top_hrr": [],
   "f5_plays": [],
   "top_sp_ks": [],
   "risk_flags": [],
   "best_matchups": [],
   "per_game_props": [
    {
     "game": "PHI @ ATL",
     "props": [
      {
       "play": "K. Schwarber - HR",
       "edge_pct": 3,
       "fair_prob": 0.14,
       "conviction": 5
      }
     ]
    }
   ],
   "game_predictions": [
    {
     "game": "PHI @ ATL",
     "win_prob_home": 0.54,
     "proj_score_away": 3.8,
     "proj_score_home": 4.2
    }
   ]
  },
  "available": true,
  "fetched_at": "2026-07-14T12:00:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-mlb-props-sheet-6905a0e5/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)
