How-to build your World Cup application
Good to have you here. The World Cup is the biggest sports events around the globe, so let's not waste a second and start building your dream application.
Last updated
Good to have you here. The World Cup is the biggest sports events around the globe, so let's not waste a second and start building your dream application.
Last updated
Welcome to our step-by-step guide on building an application for the 2026 FIFA World Cup using Sportmonks’ football data. As the biggest football tournament in the world, the World Cup 2026 promises thrilling matches featuring top teams like Brazil, Spain, Germany, Argentina, France, and England. With our comprehensive football data, you can create a powerful, engaging app for your users.
In this guide, we'll cover the following key aspects of building your World Cup 2026 application:
Full season schedule
(live) Standings
Team squads
Season topscorers
Before we dive in, please ensure you have access to the World Cup 2026 league data (League ID: 732). This access is crucial for retrieving and displaying the relevant data.
To begin, you’ll want to display the complete World Cup 2026 schedule, including group stages and knockout rounds. The challenge is that knockout games aren’t determined until later in the tournament. Our API simplifies this by using a property called is_placeholder
on both fixture and team responses.
How it works:
The is_placeholder
property helps you identify if a fixture is a placeholder (i.e., dummy data) or finalised.
This property is a boolean (true
or false
). If is_placeholder
is false
, the data is final. The fixture ID will remain consistent even when real data replaces placeholder data.
You can use the GET Schedule by Season ID endpoint with the includes to retrieve all the stages with the fixtures and the teams involved:
Next, you’ll want to show the group standings as teams progress through the tournament. The group stages and participating teams for World Cup 2026 will be available, and you can access this data using our standings endpoint.
In our World Cup 2026 all-in package, you'll also have access to live standings, which update in real-time as matches are played.
After gathering the schedule and standings, displaying the participating teams’ squads and their players adds a personal touch to your app.
The easiest way to request this is to use our GET Team by Season ID.
Of course, if you want the teams separately you can use the team squad by team and season id endpoint.
Tracking top scorers is essential for any World Cup application. Fans are always interested in who’s leading in goals, assists, and cards.
You can use the topscorers by season endpoint: GET Topscorers by Season id.
This request provides a basic response with player IDs. To get detailed information, such as player and team names, use the include
parameter like this:
We want the player and team names and not just their player ID. We can do this for all three top scorers, which are:
Goalscorers → players who have scored a goal
Assistscorers → players who gave assists
Cardscorers → players who have received yellow or red cards
So how do we know which topscorer belongs to which type? We use the include type. So we could for example request everything:
Beyond the basic data, you can enrich your World Cup 2026 application with detailed match, team, player, and season statistics. By combining these elements, you can create a dynamic and interactive experience for your users.
Do you have any questions? Just contact our team with any questions or concerns.