TACMIND API
GET /api/prediction/:match_id
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