📈 betSlips statistics

BetSlips Statistics Object

{
  "total": {
    "wins": 67,
    "losses": 45,
    "pushes": 8,
    "pending": 12,
    "roi": 8.45,
    "totalRisk": 125000,
    "totalProfit": 10562
  },
  "leagues": {
    "NFL": {
      "wins": 34,
      "losses": 22,
      "pushes": 4,
      "pending": 7,
      "roi": 12.3,
      "totalRisk": 67500,
      "totalProfit": 8300
    },
    "NBA": {
      "wins": 28,
      "losses": 18,
      "pushes": 3,
      "pending": 4,
      "roi": 5.2,
      "totalRisk": 45000,
      "totalProfit": 2340
    },
    "other": {
      "wins": 5,
      "losses": 5,
      "pushes": 1,
      "pending": 1,
      "roi": -1.8,
      "totalRisk": 12500,
      "totalProfit": -78
    }
  },
  "books": {
    "DraftKings": {
      "wins": 28,
      "losses": 19,
      "pushes": 3,
      "pending": 6,
      "roi": 9.1,
      "totalRisk": 52000,
      "totalProfit": 4732
    },
    "FanDuel": {
      "wins": 25,
      "losses": 16,
      "pushes": 3,
      "pending": 4,
      "roi": 7.8,
      "totalRisk": 48000,
      "totalProfit": 3744
    },
    "BetMGM": {
      "wins": 14,
      "losses": 10,
      "pushes": 2,
      "pending": 2,
      "roi": 8.2,
      "totalRisk": 25000,
      "totalProfit": 2050
    }
  },
  "slipType": {
    "single": {
      "wins": 45,
      "losses": 32,
      "pushes": 6,
      "pending": 8,
      "roi": 6.5,
      "totalRisk": 78000,
      "totalProfit": 5070
    },
    "parlay": {
      "wins": 18,
      "losses": 11,
      "pushes": 2,
      "pending": 3,
      "roi": 14.2,
      "totalRisk": 35000,
      "totalProfit": 4970
    },
    "teaser": {
      "wins": 1,
      "losses": 0,
      "pushes": 0,
      "pending": 1,
      "roi": 45.0,
      "totalRisk": 4000,
      "totalProfit": 1800
    },
    "live": {
      "wins": 3,
      "losses": 2,
      "pushes": 0,
      "pending": 1,
      "roi": 22.5,
      "totalRisk": 8000,
      "totalProfit": 1800
    },
    "future": {
      "wins": 1,
      "losses": 0,
      "pushes": 0,
      "pending": 0,
      "roi": 85.0,
      "totalRisk": 4000,
      "totalProfit": 3400
    }
  },
  "timeSeries": [
    {
      "startTime": "2024-01-01T00:00:00+00:00",
      "profit": 125.50,
      "sum": 125.50
    },
    {
      "startTime": "2024-01-02T00:00:00+00:00",
      "profit": -75.25,
      "sum": 50.25
    },
    {
      "startTime": "2024-01-03T00:00:00+00:00",
      "profit": 200.00,
      "sum": 250.25
    }
  ]
}

Endpoints

📈 betSlips statistics by bettor

total (object)

Overall betting statistics aggregated across all leagues, books, and bet types for the specified date range.

wins (integer)

Total count of bet slips with winning outcomes (win or halfwin).

losses (integer)

Total count of bet slips with losing outcomes (loss or halfloss).

pushes (integer)

Total count of bet slips with non-win/loss outcomes (void, push, cashout, etc.).

pending (integer)

Total count of bet slips that are still pending completion.

roi (float)

Return on investment percentage calculated as (totalProfit / totalRisk) * 100, rounded to 2 decimal places.

totalRisk (integer)

Total amount in cents wagered across all bet slips in the date range.

totalProfit (integer)

Total profit/loss in cents from all completed bet slips (negative indicates overall loss).


leagues (object)

Statistics broken down by sport league. Each league key contains the same statistical structure as the total object.

[League Name] (object)

Statistics for a specific league (e.g., "NFL", "NBA", "MLB"). Contains the same fields as the total object (wins, losses, pushes, pending, roi, totalRisk, totalProfit).

other (object)

Statistics for bet slips that don't belong to any of the specifically requested leagues in the query parameters. Contains the same statistical structure as individual leagues.


books (object)

Statistics broken down by sportsbook provider. Each book key contains the same statistical structure as the total object.

[Book Name] (object)

Statistics for a specific sportsbook (e.g., "DraftKings", "FanDuel", "BetMGM"). Contains the same fields as the total object (wins, losses, pushes, pending, roi, totalRisk, totalProfit).


slipType (object)

Statistics broken down by bet slip type and characteristics.

single (object)

Statistics for single bet slips (containing only one bet). Contains the same statistical structure as the total object.

parlay (object)

Statistics for parlay bet slips (containing multiple combined bets). Contains the same statistical structure as the total object.

teaser (object)

Statistics for teaser bet slips (parlays with adjusted point spreads). Contains the same statistical structure as the total object.

live (object)

Statistics for live bets (placed while the event was in progress). This category is computed separately from the slip type field. Contains the same statistical structure as the total object.

future (object)

Statistics for future bets (placed well in advance of the event). This category is computed separately from the slip type field. Contains the same statistical structure as the total object.


timeSeries (array)

Daily or monthly profit progression over the specified date range. Time interval is automatically determined based on date range length (daily for ≤40 days, monthly for >40 days).

startTime (string)

ISO 8601 formatted timestamp with timezone marking the beginning of this time period.

profit (float)

Net profit/loss in cents for this specific time period (can be negative).

sum (float)

Cumulative profit/loss in cents from the start of the date range through this time period.