LogoLogo
Quick StartFootball APIContactAPI 3.0
  • Welcome
  • Changelog
  • Getting Started
    • Get Started
    • Documentation for the documentation
  • Endpoint overview
    • Continents
      • GET All Continents
      • GET Continent by ID
    • Countries
      • GET All Countries
      • GET Country by ID
    • Leagues
      • GET All Leagues
      • GET League by ID
      • GET Leagues by Country ID
      • Search Leagues by Name
    • Seasons
      • GET All Seasons
      • GET Season by ID
    • Fixtures
      • GET Fixture by ID
      • GET Last Updated Fixtures
      • GET Fixtures by Date
      • GET Fixtures by Date Range
      • GET Fixtures by Date Range for Team
      • GET Fixtures by Multiple ID's
      • GET Deleted Fixtures
    • Statistics
    • Livescores
      • GET All Livescores
      • GET All In play Livescores
    • News API
      • GET All News
      • GET News For Upcoming Fixtures
      • GET News by Season ID
    • Commentaries
      • Commentaries by Fixture ID
    • Video Highlights
      • Get Video Highlights by Fixture ID
    • Head 2 Head
      • GET Head 2 Head by Team IDs
    • Standings
      • GET Standings by Season ID
      • GET LIVE Standings
      • GET Standings by Season ID and Round ID
      • GET Standings by Season and Date(time)
      • GET Standings Corrections by Season ID
    • Teams
      • GET Team by ID
      • GET Teams by Country ID
      • GET Teams by Season ID
      • Search Team by Name
      • GET Current Leagues by Team ID
      • Get All Leagues by Team ID
    • Players
      • GET Player by ID
      • GET Players by Country ID
      • Search Player by Name
    • Topscorers
      • GET Topscorers by Season ID
      • GET Topscorers Aggregated by Season ID
    • Rivals
      • GET Rivals by Team ID
    • Venues
      • GET Venue by ID
      • GET Venues by Season ID
    • Rounds
      • GET Rounds by Season ID
      • GET Round by ID
    • Odds
      • GET Odds by Fixture ID and Bookmaker ID
      • GET Odds by Fixture ID and Market ID
      • GET Odds by Fixture ID
      • GET Inplay Odds by Fixture ID
    • Coaches
      • GET Coach by ID
    • Stages
      • GET Stage by ID
      • GET Stages by Season ID
    • Bookmakers
      • GET All Bookmakers by Fixture ID
      • GET All Bookmakers
      • GET Bookmaker by ID
    • Markets
      • GET All Fixtures by Market ID
      • GET All Markets
      • GET Market by ID
    • Team Squads
      • GET Team Squad by Team and Season ID
    • TV Stations
      • GET TV Station by Fixture ID
    • Prediction API
      • GET Leagues and Performances
      • GET Probabilities
      • GET Probabilities by Fixture ID
      • GET Value Bets
      • GET Value Bet by Fixture ID
  • Tutorials
    • Introduction to our API
      • Make your first request
      • Set your time zone
      • Pagination
    • Enriching your response
      • Includes
      • Nested includes
    • Filtering, limiting & sorting
      • Filtering
      • Limiting
      • Sorting
    • Schedule, fixtures & livescores
      • Season schedule
      • Fixtures
      • Livescores
    • Statistics
      • Match statistics
      • Team statistics
      • Player statistics
      • Season statistics
    • League & topscorers standings
      • League standings
      • Topscorers standings
    • Odds & predictions
      • Odds
        • Odds by fixture, bookmaker and market id
        • FlatOdds
        • InplayOdds
      • Predictions
  • MySportmonks
    • How-to build a custom plan
    • ID Finder
  • How-to Guides
    • Get Started with our how-to guides
      • How-to build your API requests
    • Livescores & fixtures
      • How-to build a livescore website
      • How-to build a schedule page
    • Match & team pages
      • How-to build a match page with events and statistics
      • How-to build a match page with line-ups/formations
      • How-to build a team page with season stats and squads
    • How-to build standings and topscorer standings
      • League standings
      • Topscorer standings
    • Odds & predictions
      • How-to build a match page with odds
      • How-to build a betting odds portal
      • How-to use the predictions API
    • How-to build a fantasy game
    • Developer tools
      • How-to use Sportmonks' APIs in Postman
    • How-to keep your database in sync
    • World Cup 2022
    • EURO 2024
    • Football widgets
      • How-to set up football widgets in your web application
      • Configurations
      • Widgets overview
        • Livescore widget
        • International Cup widgets
  • API References
    • API reference guide
    • Data features
    • ID Finder
    • Code libraries
    • Demo response files
    • Statuses and definitions
    • API Rate limiting
    • Response codes
    • Meta description
  • General
  • Sportmonks
  • Plans & pricing
  • FAQ
  • Contact
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Endpoint overview
  2. Topscorers

GET Topscorers Aggregated by Season ID

This Topscorers endpoint returns the Aggregated Topscorers by Season. This means that all stages are summed, also preliminary stages.

PreviousGET Topscorers by Season IDNextRivals

Last updated 3 years ago

Was this helpful?

GET Topscorers Aggregated by season ID

https://soccer.sportmonks.com/api/v2.0/topscorers/season/{ID}/aggregated

Endpoint details

Authorization

API Key

Pagination

NO

Allowed nested includes

3

Parameters

Available parameters

include

Enrich the API with more data and/or nested includes. Can be used by adding &include= etc to your request url.

Include options

aggregatedGoalscorers.player aggregatedGoalscorers.player.team aggregatedCardscorers.player aggregatedCardscorers.player.team aggregatedAssistscorers.player aggregatedAssistscorers.player.team aggregatedGoalscorers.team aggregatedCardscorers.team aggregatedAssistscorers.team

Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors.

You can learn more about what includes are and how they work here:

Example response

https://soccer.sportmonks.com/api/v2.0/topscorers/season/17141/aggregated?api_token={API_TOKEN}
 "data": {
        "id": 17141,
        "name": "2020/2021",
        "league_id": 501,
        "is_current_season": false,
        "current_round_id": null,
        "current_stage_id": null,
        "aggregatedGoalscorers": {
            "data": [
                {
                    "position": 1,
                    "season_id": 17141,
                    "player_id": 96792,
                    "team_id": 53,
                    "stage_id": null,
                    "goals": 18,
                    "penalty_goals": 5,
                    "type": "aggregated_goals"
                },
                {
                    "position": 2,
                    "season_id": 17141,
                    "player_id": 173059,
                    "team_id": 66,
                    "stage_id": null,
                    "goals": 14,
                    "penalty_goals": 2,
                    "type": "aggregated_goals"
                },
                {
                    "position": 3,
                    "season_id": 17141,
                    "player_id": 4561,
                    "team_id": 62,
                    "stage_id": null,
                    "goals": 14,
                    "penalty_goals": 0,
                    "type": "aggregated_goals"
                },
                {
                    "position": 4,
                    "season_id": 17141,
                    "player_id": 172795,
                    "team_id": 66,
                    "stage_id": null,
                    "goals": 12,
                    "penalty_goals": 5,
                    "type": "aggregated_goals"
                },
                {
                    "position": 5,
                    "season_id": 17141,
                    "player_id": 92276,
                    "team_id": 62,
                    "stage_id": null,
                    "goals": 12,
                    "penalty_goals": 0,
                    "type": "aggregated_goals"
                },
                {
                    "position": 6,
                    "season_id": 17141,
                    "player_id": 758,
                    "team_id": 62,
                    "stage_id": null,
                    "goals": 12,
                    "penalty_goals": 7,
                    "type": "aggregated_goals"
                },
                {
                    "position": 7,
                    "season_id": 17141,
                    "player_id": 8934,
                    "team_id": 309,
                    "stage_id": null,
                    "goals": 11,
                    "penalty_goals": 1,
                    "type": "aggregated_goals"
                },
                {
                    "position": 8,
                    "season_id": 17141,
                    "player_id": 150759,
                    "team_id": 53,
                    "stage_id": null,
                    "goals": 10,
                    "penalty_goals": 0,
                    "type": "aggregated_goals"
                },
                {
                    "position": 9,
                    "season_id": 17141,
                    "player_id": 3387,
                    "team_id": 62,
                    "stage_id": null,
                    "goals": 10,
                    "penalty_goals": 0,
                    "type": "aggregated_goals"
                },

Season Field Description

Field

Description

id

The unique id of the current stage

name

The name of the stage

league_id

The unique league id the stage belongs to

season_id

The unique id of the current season

round_id

The unique id of the current round

round_name

The name of the round

type

Indicates what kind of type this stage is

stage_id

The unique id of the current stage

stage_name

The name of the stage

Topscorers Field Description

Field

Description

position

The actual position in the rankings in the stage

player_id

The unique player id of the player in that position in the stage

team_id

The unique id of the the player plays for

stage_id

The unique id of the current stage

goals

The total number of goals the player has scored in the stage

penalty_goals

The total number of penalty goals the player has scored in the stage

type

The type of the standings. Possible values are: goals, cards or assists

Check this endpoint in Postman.

Run in Postman