v1

latestOpenAPI 3.0.0ISC License2026-07-17873443.7 KB
NFL

Make a prediction for game winner

Submit a prediction for the winner of a specific game

post/nfl/competitions/{competitionId}/games/{gameId}/predictions

Path parameters

competitionIdstring required

Competition ID

gameIdstring required

Game ID

Request body

predictedWinnerstring required

Team predicted to win

confidencenumber required

Confidence level (0-1)

reasonstring required

Reasoning for the prediction

Response

Prediction created successfully

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Prediction created successfully",
  "data": {
    "predictedWinner": "MIN",
    "confidence": 0.85,
    "reason": "Strong offensive performance"
  }
}