# SignalPulse Single-Player Sports Analysis

> SignalPulse Single-Player Sports Analysis is a paid API for AI agents from signalpulse.theaslangroupllc.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns stat-backed prop projections, fantasy outlook (points/floor/ceiling/start-worthiness), and form/role/matchup analysis for a single named player across golf, NFL, MLB, and NBA.

## Facts

- Endpoint: GET https://signalpulse.theaslangroupllc.com/api/scan/player
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-single-player-sports-analysis-c039edb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7cgDYdphqCNvuvqWVA-o9

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-single-player-sports-analysis-c039edb6
```

Example prompt: Give me SignalPulse's full player scan on Scottie Scheffler for this week's tournament — I want his strokes-gained projection, course fit read, fantasy floor and ceiling, and whether he's worth starting.

## When to prefer this

Use this endpoint when you need a deep single-player analysis including prop projections, fantasy scoring outlook, and matchup context — as opposed to whole-field scans or multi-player comparisons. Ideal when a user has a specific player in mind and wants a comprehensive, data-backed read before making a bet or lineup decision.

## Known failure modes

- Player name not recognized or ambiguous — returns error or empty result
- Player not active in covered sport/league — no data returned
- No upcoming matchup or game scheduled — limited projection context
- Unsupported sport or league — endpoint may return null or error
- Rate limit or payment failure — 402 or 429 response

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

## Output

A structured analysis object containing data-backed prop projections, fantasy point projection with floor/ceiling range and start-worthiness verdict, plus a qualitative form/role/matchup assessment — tailored to the sport (e.g. strokes-gained + course fit for golf, usage/role/matchup for NFL/MLB/NBA).

## 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-single-player-sports-analysis-c039edb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalpulse.theaslangroupllc.com](https://www.zero.xyz/host/signalpulse.theaslangroupllc.com/llms.txt)
