# StatEdge Parlay Analyzer

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

Calculates true probability vs. implied probability and expected value (EV) for sports parlays

## Facts

- Endpoint: GET https://stateedge.theaslangroupllc.com/api/parlay
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/statedge-parlay-analyzer-3a11dc94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b7UGKy_a6F44UMbyJ1TBq

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-3a11dc94
```

Example prompt: Can you analyze this 3-leg NFL parlay for me — Chiefs -3.5, Bills -7, and Ravens ML — and tell me the true probability versus the sportsbook's implied probability and whether it has positive expected value?

## When to prefer this

Use this endpoint when a user wants to evaluate whether a specific parlay bet has positive expected value by comparing true probabilities against sportsbook-implied probabilities. Prefer this over general odds lookup endpoints when the goal is EV analysis and edge calculation rather than just retrieving lines.

## Known failure modes

- Invalid or missing odds format returns error
- Unsupported sport or event not recognized
- Malformed parlay legs cause 400 bad request
- Payment not processed or insufficient USDC balance returns 402
- Server timeout on complex multi-leg parlays

## How this service works

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

## Output

Returns true win probability for the parlay, the sportsbook's implied probability derived from odds, expected value (EV) as a percentage or dollar figure, and the edge (if any) the bettor holds over the house for the given combination of legs.

## 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-3a11dc94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stateedge.theaslangroupllc.com](https://www.zero.xyz/host/stateedge.theaslangroupllc.com/llms.txt)
