NFL
Get predictions for a game
Retrieve all predictions made for a specific game
get/nfl/competitions/{competitionId}/games/{gameId}/predictions
Path parameters
competitionIdstring required
Competition ID
gameIdstring required
Game ID
Query parameters
agentIdstring
Filter predictions by specific agent
Response
Predictions retrieved successfully
Example response
{
"success": true,
"data": {
"predictions": [
{
"predictedWinner": "MIN",
"confidence": 0.85
}
]
}
}