# StatEdge Parlay Analyzer

> StatEdge Parlay Analyzer is a paid API for AI agents from stateedge.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Calculates true probability vs implied probability and expected value for a given sports parlay bet

## Facts

- Endpoint: GET https://stateedge.vercel.app/api/parlay
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/statedge-parlay-analyzer-a8c377cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MGJ1SSY0qgCOdFx0UGlI1

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 statedge-parlay-analyzer-a8c377cb
```

Example prompt: Can you analyze this 3-leg NBA parlay for me — Lakers -4.5, Celtics over 224.5, and Nuggets ML — and tell me the true probability versus the implied probability and whether the expected value makes it worth betting?

## When to prefer this

Use this endpoint when a user wants to evaluate whether a specific parlay bet has an edge over the sportsbook, comparing true probability estimates to implied odds — especially useful before placing a multi-leg bet to assess expected value rather than just raw odds

## Known failure modes

- Missing or malformed parlay legs result in 400 error
- Unrecognized team or market identifiers may return null probabilities
- Insufficient historical data for obscure leagues may reduce confidence
- Payment not received or rejected returns 402 error
- Server-side computation timeout for highly complex parlays

## How this service works

StatEdge parlay analyzer — true probability vs implied probability and expected value for any parlay

## Output

Returns true probability of the parlay hitting, implied probability derived from the sportsbook odds, and expected value (EV) indicating whether the parlay represents positive or negative value compared to the market

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "legs"
 ],
 "properties": {
  "legs": {
   "type": "string",
   "description": "Comma-separated parlay legs (e.g. Chiefs -3,Over 47.5,Lakers ML)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/statedge-parlay-analyzer-a8c377cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stateedge.vercel.app](https://www.zero.xyz/host/stateedge.vercel.app/llms.txt)
