Skip to main content

Get Predictions

GET /api/v1/{sport}/predictions
Returns model-driven predictions for the next batch of upcoming matches (typically 50+).
curl -H "x-api-key: YOUR_API_KEY" \
  "https://api.sportsapipro.com/v6/football/predictions"

Response

{
  "success": true,
  "count": 54,
  "matches": [
    {
      "id": "9gklzi1e9g8im7x",
      "sportId": 1,
      "homeTeam": { "id": "4ndqmlilnzbgkve" },
      "awayTeam": { "id": "yzrkn6iyx4tnqle" },
      "matchTime": 1782604800
    }
  ],
  "teams": [
    { "id": "4ndqmlilnzbgkve", "name": "Univ Catolica", "logo": "..." }
  ]
}
Cache TTL: 30 s.
Predictions are for informational purposes only. Combine with /match/{id}/odds for bookmaker context.
Last modified on June 29, 2026