# SignalPulse Player Comparison & Ranking Engine

> SignalPulse Player Comparison & Ranking Engine is a paid API for AI agents from signalpulse.theaslangroupllc.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Compares and ranks 2+ named sports players head-to-head, returning a ranked list with projections and the best single betting play plus best fantasy/DFS value pick.

## Facts

- Endpoint: GET https://signalpulse.theaslangroupllc.com/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-player-comparison-ranking-engine-c21510c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gDD4DlMLGHDhregZfxERi

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-player-comparison-ranking-engine-c21510c6
```

Example prompt: Compare Scottie Scheffler, Rory McIlroy, and Xander Schauffele for a 3-ball bet this Sunday at Augusta — rank them by strokes-gained and course fit, and tell me the single best betting play and best DFS value among them.

## When to prefer this

Use this endpoint when you need a head-to-head or small-pool comparison of named players rather than a whole-field scan. Ideal for golf 3-balls, DFS player pool decisions, start/sit fantasy choices, or 'best of these' betting questions where you already have a shortlist of players and want ranked projections with a concrete recommendation.

## Known failure modes

- Fewer than 2 player names provided — endpoint requires at least 2 named players to compare
- Unrecognized player names or misspellings cause lookup failures
- Unsupported sport type returns an error or empty projection
- Stale data window if called during an active live event with incomplete stats
- Payment failure (x402) if USDC balance is insufficient — call is not executed

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

## Output

A ranked list of the submitted players, each with a projection value and the analytical case supporting their ranking, plus a highlighted single best betting play and the best fantasy/DFS value pick, powered by sport-specific deep signals (strokes-gained + course fit for golf, surface/form for tennis, combat style for MMA/boxing).

## 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-player-comparison-ranking-engine-c21510c6/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)
