# SignalPulse Player Scan — Fantasy Sports & Prop Analysis

> SignalPulse Player Scan — Fantasy Sports & Prop Analysis is a paid API for AI agents from signalpulse-peach.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns fantasy projections, start-worthiness ratings, and stat prop leans (over/under) for a named sports player.

## Facts

- Endpoint: GET https://signalpulse-peach.vercel.app/api/scan/player
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-player-scan-fantasy-sports-prop-analysis-5a416754
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jqo5WXcGmVmfTF5Cg24g9

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 signalpulse-player-scan-fantasy-sports-prop-analysis-5a416754
```

Example prompt: Pull me a SignalPulse player scan on Aaron Judge — I want his fantasy projected points, whether he's a must-start or sit, and the over/under lean on his total bases prop.

## When to prefer this

Use this endpoint when you need a quick, per-player fantasy sports projection or prop bet lean for a named athlete. Best suited for daily fantasy lineup decisions, player prop wagering, or start/sit advice. Not a general market signal scanner — use sibling endpoints for FX, crypto, or equities signals.

## Known failure modes

- Unknown or misspelled player name returns no results or an error
- Player not active/scheduled today may return empty projections
- API credit exhausted returns 402 Payment Required
- Rate limit or server error on Vercel hosting returns 5xx

## How this service works

Single-player outlook for AI betting, fantasy & research agents — a stat-projected read of one named player: data-backed prop projections, the fantasy projection (points, floor/ceiling, start-worthiness) and the form/role/matchup read. Covers golf strokes-gained + course fit and NFL/MLB/NBA usage/role/matchup. Sizing, alerts & the tracked record are premium.

## Output

A JSON object with the player's fantasy tier, projected fantasy points, start-worthiness label (e.g. 'must-start'), and a list of stat prop projections each with a lean (over/under) and a numeric projection value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "sport",
      "player"
     ],
     "properties": {
      "sport": {
       "type": "string",
       "description": "mlb | nfl | nba | golf … (required)"
      },
      "market": {
       "type": "string",
       "description": "optional focus: a stat/prop, fantasy, or props"
      },
      "player": {
       "type": "string",
       "description": "required"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "agent_analysis",
  "player": "Aaron Judge",
  "fantasy": {
   "projected_points": "11.2",
   "start_worthiness": "must-start"
  },
  "projections": [
   {
    "lean": "over",
    "stat": "total bases",
    "projection": "1.8"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalpulse-player-scan-fantasy-sports-prop-analysis-5a416754/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalpulse-peach.vercel.app](https://www.zero.xyz/host/signalpulse-peach.vercel.app/llms.txt)
