# SignalPulse Golf Field Scanner

> SignalPulse Golf Field Scanner 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-16).

Scans the entire PGA tournament field using ShotLink strokes-gained and ESPN data to surface the single highest expected-value golf bet across all bet types, weighted by course-fit profile and tee-time weather.

## Facts

- Endpoint: GET https://signalpulse-peach.vercel.app/api/scan/golf
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-golf-field-scanner-3247fe7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sT7ExHwCH0svzCM4H3Xq5

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-golf-field-scanner-3247fe7e
```

Example prompt: Scan this week's entire PGA tournament field and tell me the single highest expected-value golf bet — I want the best play across outright winner, each-way, top-N, make-cut, and first-round-leader, factoring in course fit and weather.

## When to prefer this

Use this endpoint when you need a whole-field golf bet recommendation for the current PGA tournament without specifying a golfer — it scans every player and all bet types simultaneously. For head-to-head matchups or comparing specific named golfers, use /api/scan/compare or /api/scan/h2h instead.

## Known failure modes

- No active PGA tournament returns empty or error response
- ShotLink or ESPN data unavailable causes degraded analysis
- Weather data unavailable reduces tee-time wave factor
- API returns 402 if payment not submitted correctly
- Rate limiting or timeout on Vercel serverless function

## How this service works

Two products. Every market. Ask any question about FX, crypto, equities, sports or racing — or get an actionable trade signal from a 37-instrument scanner. Credits, no subscription.

## Output

Returns the single highest-EV bet recommendation across all golf bet types (outright, each-way, top-N, matchup, make-cut, first-round-leader) for the current PGA tournament, including the recommended golfer, bet type rationale, course-fit profile analysis, and tee-time weather wave assessment.

## 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",
     "properties": {
      "market": {
       "type": "string",
       "description": "optional bet-type hint: outright | each-way | top-10 | matchup | make-cut | first-round-leader | dfs"
      }
     }
    }
   },
   "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",
  "avoid": "the over-bet bomber the layout neutralises",
  "top_pick": {
   "player": "Fitzpatrick",
   "bet_type": "top-10",
   "edge_pct": 4,
   "market_odds": "+260"
  },
  "value_picks": [],
  "scan_summary": "Calm week at a birdie-fest course rewarding APP/OTT"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalpulse-golf-field-scanner-3247fe7e/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)
