# SignalPulse Golf Field Scanner

> SignalPulse Golf Field Scanner is a paid API for AI agents from signalpulse.theaslangroupllc.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: GET https://signalpulse.theaslangroupllc.com/api/scan/golf
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-golf-field-scanner-a48407ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NFhq-YCm3xGXFsYt1_pWt

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-a48407ce
```

Example prompt: Scan the entire field for this week's PGA tournament and give me the single highest expected-value bet — outright, each-way, top-20, matchup, make-cut, or first-round-leader — factoring in strokes-gained course fit and the tee-time weather wave.

## When to prefer this

Use this endpoint when you need a whole-field sweep to find the best single golf betting or fantasy play across all bet types. Prefer this over /api/scan/compare or /h2h when you do NOT have specific named golfers to compare — this endpoint finds the best opportunity across the entire field automatically.

## Known failure modes

- No active PGA tournament returns empty or error response
- ShotLink or ESPN data unavailable mid-week before field is announced
- Weather data not yet available for future tee times
- Request for specific named golfer comparison — should use /api/scan/compare or /h2h instead
- Rate limiting or payment failure if x402 USDC payment not properly handled

## How this service works

Whole-field golf scan for AI betting, fantasy & research agents — reads the ENTIRE tournament field (PGA ShotLink strokes-gained + ESPN) and surfaces the single highest-EV play across every bet type (outright / each-way / top-N / matchup / make-cut / first-round-leader), led by course-fit + the tee-time weather wave. Named golfers: use /api/scan/compare or /h2h.

## Output

Returns the single highest-EV golf bet across all applicable bet types (outright, each-way, top-N, matchup, make-cut, first-round-leader), supported by course-fit metrics from PGA ShotLink strokes-gained data, ESPN stats, and tee-time weather analysis. Includes the recommended golfer, bet type, and edge rationale.

## 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-a48407ce/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)
