UEFA Euro Results & Tables avatar

UEFA Euro Results & Tables

Pricing

from $0.85 / 1,000 match or standings

Go to Apify Store
UEFA Euro Results & Tables

UEFA Euro Results & Tables

Extracts UEFA European Championship fixtures, results, scores, teams, groups, venues, and tables.

Pricing

from $0.85 / 1,000 match or standings

Rating

0.0

(0)

Developer

Trove Vault

Trove Vault

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

UEFA Euro Results & Tables returns structured UEFA Euro fixtures, results, scores, teams, stages, groups where available, and calculated standings for supported seasons or editions.

Use it for dashboards, spreadsheets, editorial feeds, tournament monitoring, and API workflows that need clean rows instead of manually checking football pages.

What It Produces

  • Match rows with competitionName, tournamentName, season, stage, round, teams, scores, date, status, and winner.
  • Standings rows for completed group-stage or league-phase matches.
  • Optional filtering by stage, group, team, and completed games only.
  • Optional append into an existing Apify dataset with datasetId.

Supported Seasons

  • 2020 Europe
  • 2024 Germany
  • 2028 United Kingdom and Ireland

The actor supports seasons listed in the input schema. Future seasons can be added after the public dataset publishes a matching source file and the parser output is validated.

Input

  • season: supported season or edition.
  • stage: all, group, league, or knockout.
  • group: optional exact group filter such as Group A.
  • team: optional team or club name filter.
  • includeMatches: return match rows.
  • includeStandings: calculate standings.
  • completedOnly: return only finished match rows.
  • maxMatches: cap match rows after filters.
  • datasetId: optional dataset append target.
  • runId: optional workflow identifier copied into rows.

Example Input

{
"season": "2024",
"stage": "all",
"group": "all",
"includeMatches": true,
"includeStandings": true,
"completedOnly": false,
"maxMatches": 25
}

Example Output Row

{
"competitionName": "UEFA Euro",
"tournamentName": "UEFA Euro 2024",
"season": "2024",
"stage": "group",
"round": "Group A",
"group": "Group A",
"homeTeam": "Team A",
"awayTeam": "Team B",
"homeScore": 2,
"awayScore": 1,
"status": "finished",
"winner": "home"
}

API Usage

curl "https://api.apify.com/v2/acts/trovevault~uefa-euro-results-tables/runs?waitForFinish=120" \
-H "Authorization: Bearer $APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"season": "2024",
"includeMatches": true,
"includeStandings": true,
"maxMatches": 25
}'

Limitations

This actor uses public open football datasets. It is not an official live feed from a tournament organizer. Recent fixtures or results can lag until the public dataset is updated. The actor does not include player-level stats, cards, substitutions, odds, squads, rankings, or minute-by-minute live events.

Standings are calculated from completed matches in the source. For competitions with a single league phase, the standings output is a single league table. For competitions where the source does not expose official group labels directly, group labels are inferred from the group-stage match graph and should be checked before use in high-stakes reporting.

Changelog

  • 0.1: Initial TroveVault version with supported seasons, match filters, completed-only option, and calculated standings.