# SignalPulse Compare Scanner — Multi-Instrument Trade Signal Comparison

> SignalPulse Compare Scanner — Multi-Instrument Trade Signal Comparison 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).

Compares and ranks trading opportunities across sports/racing/FX/crypto/equities markets, returning ranked players or instruments with confidence scores and actionable trade signals.

## Facts

- Endpoint: GET https://signalpulse-peach.vercel.app/api/scan/compare
- 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-compare-scanner-multi-instrument-trade-signal-comparison-b0598d7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2XEYKgn1yUhmCghgzy0Nn

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-compare-scanner-multi-instrument-trade-signal-comparison-b0598d7c
```

Example prompt: Compare the top golfers at this week's tournament — Scheffler, Morikawa, and Rahm — and give me a ranked confidence breakdown with a best 3-ball play recommendation and who to pick for fantasy.

## When to prefer this

Use this endpoint when you need to compare multiple specific players, assets, or instruments head-to-head and receive a ranked, confidence-scored signal with a clear best-play recommendation — especially for golf, sports matchups, FX pairs, or crypto comparisons rather than a broad market scan.

## Known failure modes

- Missing or unrecognized player/instrument names — returns empty or partial ranking
- Market type not supported — endpoint may return error or null results
- Insufficient market data for confidence scoring — low confidence scores returned
- Payment not fulfilled (x402) — 402 response requiring 0.5 USDC before result delivered
- Rate limit or Vercel cold start — slow or timeout response

## How this service works

Compare & rank 2+ named players against each other for AI betting, fantasy & research agents — golf 3-balls, DFS player pools, season-long start/sit, 'best of these'. Returns a ranked list (each with a projection + the case) plus the single best betting play AND the best fantasy/DFS value, off the deep engine: golf strokes-gained + course fit; tennis surface/form; combat style. Sizing, alerts & the tracked record are premium.

## Output

A JSON object with a tier label, a ranked array of players or instruments each with a confidence score and projection, a best_play object indicating the top pick and play type (e.g. 3-ball), and a fantasy_best pick.

## 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",
      "players"
     ],
     "properties": {
      "sport": {
       "type": "string",
       "description": "golf | tennis | mma … (required)"
      },
      "market": {
       "type": "string",
       "description": "optional purpose: value | fantasy | props | start-sit"
      },
      "players": {
       "type": "string",
       "description": "2–12 names: a-vs-b-vs-c, comma-separated, or repeated ?player= (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",
  "ranking": [
   {
    "rank": 1,
    "player": "Scheffler",
    "confidence": 0.6,
    "projection": "SG +2.8; best course fit"
   }
  ],
  "best_play": {
   "player": "Scheffler",
   "play_type": "3-ball"
  },
  "fantasy_best": {
   "player": "Morikawa"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalpulse-compare-scanner-multi-instrument-trade-signal-comparison-b0598d7c/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)
