# SignalPulse Game Scanner — Sports Trade Signal Picks

> SignalPulse Game Scanner — Sports Trade Signal Picks is a paid API for AI agents from signalpulse-peach.vercel.app, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Scans upcoming sports and racing games to return actionable top picks with confidence ratings and edge reasoning

## Facts

- Endpoint: GET https://signalpulse-peach.vercel.app/api/scan/game
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-game-scanner-sports-trade-signal-picks-1181ab05
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PDcK7OXYDW07comkLyLZr

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-game-scanner-sports-trade-signal-picks-1181ab05
```

Example prompt: Scan tonight's MLB and NBA games using SignalPulse and give me the top actionable picks with their confidence levels and the edge reason behind each one.

## When to prefer this

Choose this endpoint when you need fast, pre-computed actionable sports or racing game picks with explanatory edge reasoning, rather than open-ended market analysis questions. Best suited for agents that need specific pick recommendations with confidence scores rather than general market commentary.

## Known failure modes

- No games available for the requested date or sport, returning empty top_picks array
- Payment not processed (x402 protocol), returning 402 Payment Required
- Insufficient credits to complete the scan
- API timeout or upstream data unavailability from sports data providers
- Malformed request parameters returning 400 error

## How this service works

MLB & NFL game picks with Statcast-grade edge — MLB: Baseball Savant xERA luck regression, confirmed batting orders, xwOBA batter splits, park factors + Bovada run totals. NFL: EPA/nflverse participation + weather + injuries. De-vigged Bovada/FanDuel/Pinnacle consensus across MLB, NFL, NBA, soccer, tennis and MMA. Returns 3 ranked +EV plays with full reasoning. Verifiable track record: https://signalpulse-peach.vercel.app/track-record

## Output

Returns a JSON object with a tier label (e.g. 'agent_analysis') and a list of top picks, each containing the specific pick (e.g. 'Yankees team total Over 4.5'), a confidence rating (low/medium/high), and a human-readable edge reason explaining the statistical or contextual basis for the signal.

## 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"
     ],
     "properties": {
      "event": {
       "type": "string",
       "description": "optional"
      },
      "sport": {
       "type": "string",
       "description": "mlb | nba | nfl | nhl | wnba | soccer_epl | tennis | mma | esports … (required)"
      },
      "market_type": {
       "type": "string",
       "description": "optional focus: moneyline | spread | total | props"
      }
     }
    }
   },
   "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",
  "top_picks": [
   {
    "pick": "Yankees team total Over 4.5",
    "confidence": "medium",
    "edge_reason": "Wind blowing out 18mph to RF + opposing RHP fly-ball rate…"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalpulse-game-scanner-sports-trade-signal-picks-1181ab05/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)
