File size: 6,138 Bytes
6f7e932
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{
  "openapi": "3.0.3",
  "info": {
    "title": "Football Prediction API",
    "description": "Complete football prediction system with ML ensemble, advanced features, live odds, and more.",
    "version": "2.0.0",
    "contact": {
      "name": "API Support"
    }
  },
  "servers": [
    {"url": "http://localhost:5000", "description": "Local development"},
    {"url": "https://your-app.koyeb.app", "description": "Production"}
  ],
  "tags": [
    {"name": "Predictions", "description": "Match predictions"},
    {"name": "Live", "description": "Live data and odds"},
    {"name": "ML", "description": "Machine Learning models"},
    {"name": "Training", "description": "Model training and tuning"},
    {"name": "Analytics", "description": "Accuracy and analytics"}
  ],
  "paths": {
    "/api/v2/predict": {
      "get": {
        "tags": ["Predictions"],
        "summary": "Enhanced prediction with all features",
        "parameters": [
          {"name": "home", "in": "query", "required": true, "schema": {"type": "string"}, "example": "Germany"},
          {"name": "away", "in": "query", "required": true, "schema": {"type": "string"}, "example": "France"}
        ],
        "responses": {
          "200": {
            "description": "Prediction result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {"type": "boolean"},
                    "final_prediction": {
                      "type": "object",
                      "properties": {
                        "home_win_prob": {"type": "number"},
                        "draw_prob": {"type": "number"},
                        "away_win_prob": {"type": "number"},
                        "predicted_outcome": {"type": "string"},
                        "confidence": {"type": "number"}
                      }
                    },
                    "goals": {
                      "type": "object",
                      "properties": {
                        "home_xg": {"type": "number"},
                        "away_xg": {"type": "number"},
                        "over_2.5": {"type": "number"},
                        "btts": {"type": "number"}
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/form/{team}": {
      "get": {
        "tags": ["Predictions"],
        "summary": "Get team's recent form",
        "parameters": [
          {"name": "team", "in": "path", "required": true, "schema": {"type": "string"}}
        ],
        "responses": {
          "200": {"description": "Team form data"}
        }
      }
    },
    "/api/h2h": {
      "get": {
        "tags": ["Predictions"],
        "summary": "Head-to-head statistics",
        "parameters": [
          {"name": "team1", "in": "query", "required": true, "schema": {"type": "string"}},
          {"name": "team2", "in": "query", "required": true, "schema": {"type": "string"}}
        ],
        "responses": {
          "200": {"description": "H2H stats"}
        }
      }
    },
    "/api/live-odds": {
      "get": {
        "tags": ["Live"],
        "summary": "Get live odds from multiple bookmakers",
        "parameters": [
          {"name": "sport", "in": "query", "schema": {"type": "string", "default": "soccer_epl"}}
        ],
        "responses": {
          "200": {"description": "Odds comparison data"}
        }
      }
    },
    "/api/live-scores": {
      "get": {
        "tags": ["Live"],
        "summary": "Get live match scores",
        "responses": {
          "200": {"description": "Live matches"}
        }
      }
    },
    "/api/training/start": {
      "post": {
        "tags": ["Training"],
        "summary": "Start model retraining",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "async": {"type": "boolean", "default": true},
                  "params": {"type": "object"}
                }
              }
            }
          }
        },
        "responses": {
          "200": {"description": "Training started"}
        }
      }
    },
    "/api/training/status": {
      "get": {
        "tags": ["Training"],
        "summary": "Get training status",
        "responses": {
          "200": {"description": "Training status"}
        }
      }
    },
    "/api/tuning/set": {
      "post": {
        "tags": ["Training"],
        "summary": "Set hyperparameters",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {"type": "string", "enum": ["xgb", "lgb", "cat", "nn"]},
                  "params": {"type": "object"}
                }
              }
            }
          }
        },
        "responses": {
          "200": {"description": "Hyperparameters updated"}
        }
      }
    },
    "/api/accuracy/stats": {
      "get": {
        "tags": ["Analytics"],
        "summary": "Get accuracy statistics",
        "parameters": [
          {"name": "period", "in": "query", "schema": {"type": "string", "enum": ["today", "week", "month", "all"]}}
        ],
        "responses": {
          "200": {"description": "Accuracy stats"}
        }
      }
    },
    "/api/backtest/run": {
      "post": {
        "tags": ["Analytics"],
        "summary": "Run historical backtest",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "start_year": {"type": "integer", "default": 2020},
                  "end_year": {"type": "integer", "default": 2024}
                }
              }
            }
          }
        },
        "responses": {
          "200": {"description": "Backtest results"}
        }
      }
    }
  }
}