Olympic Medal & Event Results Tables avatar

Olympic Medal & Event Results Tables

Pricing

from $0.85 / 1,000 medals

Go to Apify Store
Olympic Medal & Event Results Tables

Olympic Medal & Event Results Tables

Returns Olympic medal tables, event podiums, sport medal tables, and country event medal breakdowns.

Pricing

from $0.85 / 1,000 medals

Rating

0.0

(0)

Developer

Trove Vault

Trove Vault

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

12 days ago

Last modified

Share

Get Olympic medal tables and event-level medal results in clean, analysis-ready datasets.

This Actor is built for sports data workflows that need more than the final medal table. It returns podium rows by event, country medal tables, sport-by-country medal tables, and country/event medal breakdowns. Optional detail mode can also return full event standings and team-member rows for team events.

What It Returns

  • Event medals: one row per medal won in each Olympic event.
  • Country medal table: ranked gold/silver/bronze/total medals by country.
  • Sport medal table: ranked medal totals by sport and country.
  • Country event breakdown: country results split by sport and event.
  • Team members: optional athlete rows for team medals.
  • Event standings: optional full standings for selected events.

Input

{
"games": "Paris 2024",
"sport": "Athletics",
"country": "USA",
"medals": ["gold", "silver", "bronze"],
"maxEvents": 100,
"includeTeamMembers": false,
"includeFullEventStandings": false,
"maxEventDetails": 25
}

Main Options

  • games: Olympic Games edition selected from the dropdown, for example Paris 2024, Tokyo 2020, or Beijing 2022.
  • sport: optional sport or discipline selected from the dropdown. Use All sports for the full edition.
  • country: optional NOC or country filter, for example USA, Portugal, or France.
  • medals: choose any of gold, silver, and bronze.
  • maxEvents: maximum number of events to include.
  • includeTeamMembers: fetch team-member rows for team event medals.
  • includeFullEventStandings: fetch standings tables for event detail pages.
  • maxEventDetails: limits detail page fetches when optional detail modes are enabled.

Output Datasets

The default dataset contains event medal rows. Additional named datasets are available from the Actor output:

  • countryMedalTable
  • sportMedalTable
  • countryEventBreakdown
  • teamMembers
  • eventStandings

API Example

curl "https://api.apify.com/v2/acts/TroveVault~olympic-medal-event-results-tables/runs" \
-H "Authorization: Bearer $APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"games": "Paris 2024",
"country": "USA",
"maxEvents": 50
}'

Example event medal row:

{
"games": "Paris 2024",
"editionYear": 2024,
"season": "summer",
"sport": "Athletics",
"eventName": "100 metres, Men",
"eventGender": "men",
"medal": "gold",
"medalRank": 1,
"countryCode": "USA",
"countryName": "United States",
"medalistName": "Noah Lyles",
"teamEvent": false
}

Notes

The Actor is intended for completed Olympic Games and official historical results workflows. Optional event detail modes intentionally fetch fewer pages by default because they are slower and more granular than the medal-table workflow.