Catalog/sports-arbitrage-2way

Sports

Two-way arbitrage detector API

Detects a two-way sure-bet (1/oddsA + 1/oddsB < 1) and computes the stake split for a target total that locks equal profit on either outcome, with guaranteed profit and ROI. Answers 'Is there an arbitrage between these two books?', 'How do I split my stake to lock a sure profit?'.

Price$0.06per request
MethodPOST
Route/v1/sports/arbitrage-2way
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
sportsbettingarbitragesure-betstake-splithedgeguaranteed-profittwo-waymatched-betting
API URLhttps://x402.hexl.dev/v1/sports/arbitrage-2way
Integration docs
Example request
{
  "decimalA": 2.1,
  "decimalB": 2.1,
  "totalStake": 100
}
Example response
{
  "decimalA": 2.1,
  "decimalB": 2.1,
  "totalStake": 100,
  "inverseSum": 0.952381,
  "isArbitrage": true,
  "arbitragePct": 4.7619,
  "stakeA": 50,
  "stakeB": 50,
  "guaranteedPayout": 105,
  "guaranteedProfit": 5,
  "roiPct": 5,
  "formula": "arb if 1/oddsA + 1/oddsB < 1; stake_i = total·(1/odds_i)/Σ(1/odds)"
}
Input schema
{
  "type": "object",
  "required": [
    "decimalA",
    "decimalB"
  ],
  "properties": {
    "decimalA": {
      "type": "number",
      "examples": [
        2.1
      ]
    },
    "decimalB": {
      "type": "number",
      "examples": [
        2.1
      ]
    },
    "totalStake": {
      "type": "number",
      "examples": [
        100
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}