get_match_probabilities
Footdigest: calibrated home/draw/away probabilities and expected goals for a football matchup, from the backtested Dixon-Coles + Elo engine. Ask by `match_id`, or by `home_team` and `away_team` names for any matchup. Every answer is sourced and timestamped; see get_model_card for the methodology.
Parameters3
| away_team | string | optional | Away (or second) team name. |
| home_team | string | optional | Home (or first) team name. |
| match_id | integer | optional | Scheduled fixture id. |
Raw schema
{
"type": "object",
"properties": {
"away_team": {
"description": "Away (or second) team name.",
"type": "string"
},
"home_team": {
"description": "Home (or first) team name.",
"type": "string"
},
"match_id": {
"description": "Scheduled fixture id.",
"type": "integer"
}
},
"required": []
}