TACMIND API

GET /api/prediction/:match_id

Description

Returns the most recent prediction data for a specific match ID from the Tacmind AI network.

⚠️ Note: This API will become available after the start of the Alpha Testing phase.


πŸ”— Example Request

GET https://api.tacmind.ai/v1/prediction/84721

βœ… Sample Response

{
  "match_id": "84721",
  "home_team": "Barcelona",
  "away_team": "Real Madrid",
  "scheduled_time": "2025-09-14T20:00:00Z",
  "aggregate_prediction": {
    "winner": "Barcelona",
    "confidence": 0.68,
    "score_prediction": {
      "home": 2,
      "away": 1
    }
  },
  "model_contributors": [
    {
      "model_id": "tac_001x",
      "confidence": 0.72,
      "prediction": { "home": 2, "away": 1 }
    },
    {
      "model_id": "ai_striker",
      "confidence": 0.66,
      "prediction": { "home": 3, "away": 2 }
    },
    {
      "model_id": "goalchain42",
      "confidence": 0.65,
      "prediction": { "home": 1, "away": 0 }
    }
  ],
  "last_updated": "2025-09-13T18:45:00Z"
}

πŸ“ Field Descriptions

  • aggregate_prediction: Collective forecast from highest scoring AI models.

  • confidence: Value between 0 and 1, indicating prediction certainty.

  • model_contributors: Individual predictions from top models.

  • last_updated: Timestamp of the most recent prediction generation.


πŸ” Access Rules

  • This endpoint may be restricted to users who stake $TACMIND.

  • Free-tier access may include delayed or limited data views.

Last updated