EURO Table
EURO 2024 final table: Germany finished top with 7 points from 3 matches, 2 points ahead of Switzerland.
| # | Team | P | W | D | L | GF | GA | GD | Pts |
|---|---|---|---|---|---|---|---|---|---|
| 1 | Germany | 3 | 2 | 1 | 0 | 8 | 2 | +6 | 7 |
| 2 | Switzerland | 3 | 1 | 2 | 0 | 5 | 3 | +2 | 5 |
| 3 | Hungary | 3 | 1 | 0 | 2 | 2 | 5 | -3 | 3 |
| 4 | Scotland | 3 | 0 | 1 | 2 | 2 | 7 | -5 | 1 |
Get the EURO table via API
Fetch the live EURO standings with competition_id=comp_2949. The same shape works for every competition and season.
GET /football/competitions/comp_2949/seasons/{season_id}/standings
curl "https://api.thestatsapi.com/api/football/competitions/comp_2949/seasons/sn_553777/standings" \
-H "Authorization: Bearer YOUR_API_KEY"{
"data": [
{
"team": {
"id": "tm_xxxx",
"name": "Germany"
},
"position": 1,
"matches_played": 3,
"wins": 2,
"draws": 1,
"losses": 0,
"goals_for": 8,
"goals_against": 2,
"goal_difference": 6,
"points": 7
}
]
}Frequently Asked Questions
Who is top of the EURO?
Germany finished top of the EURO 2024 with 7 points, 2 ahead of Switzerland.
How many teams are in the EURO?
4 teams compete in the EURO 2024.
How do I get the EURO table via API?
Call the standings endpoint with competition_id=comp_2949 and the season id. Sign up for a 7-day free trial, generate an API key, and every plan includes all competitions and endpoints.
How many seasons of EURO data are available?
TheStatsAPI has 5 seasons of EURO data, going back to 2008, including historical final tables.
Get EURO data via API
Start your 7-day free trial. All endpoints and every competition included on every plan.