Skip to main content

A prediction comparison report for the given event.

GET 

/american-football/v2/reports/events/:uuid/comparisons

Information in the report is available from additional APIs however it is summarized here for quick and easy post-game access.

The comparisons contains a json object listing the home and away details. Here's an example:

"comparisons": {
"home": {
"predicted": {
"winloss": 30.8,
"spread": 4.72,
"overunder": 139.58
},
"actual": {
"winloss": "loss",
"overunder": 144,
"score": 74
},
"market": {
"avgSpread": 3.25,
"avgOverunder": 139.45
}
},
"away": {
"predicted": {
"winloss": 69.2,
"spread": -4.72,
"overunder": 139.58
},
"actual": {
"winloss": "win",
"overunder": 140,
"score": 70
},
"market": {
"avgSpread": -3.25,
"avgOverunder": 139.45
}
}
}

NOTE: Event results are not considered final until they are validated. Box scores should be accurate within 30 mins of the end of the game.

Request​

Path Parameters

    uuid anyrequired

    Event resource UUID

Responses​

EventComparison resource

Loading...