Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Resource information

...

NameTypeDescription
tokenxsd:stringREQUIRED. More information concerning authorization in API introduction section
langxsd:stringDetermines language for the output data. The complete list of possible languages can be retrieved using the API resource: languages.index
pagexsd:intDetermines offset of paginated data. Default value is 1 which means first page
limitxsd:int

Determines maximum number of returned records on page. Used in paginated data. Default value is 500

Possible values: 5, 10, 25, 50, 100, 250, 500

sport_idxsd:intDetermines the sport to which the season belongs. The complete list of possible sports can be retrieved using the API resource: sports.index
competition_idxsd:intDetermines the competition to which the season belongsPossibility to input multiple identifiers, separated by comma. The complete list of possible competitions can be retrieved using the API resource: competitions.index
participant_idxsd:intDetermines the participant that is included in the seasons. The complete list of possible participants can be retrieved using the API resource: participants.index
multi_idsxsd:string

List of season identifiers separated by a comma (e.g. 123,234,321) for the season details you want to get.(Up to 100 ids)

yearxsd:string

Determines the season year e.g.

  • 1970
  • 1970/71
  • 1971
  • 1971/72
  • 2000
  • 2000/01
  • 2014
  • 2014/15

sort_typexsd:string

Determines sort order of data. Possible values:

  • competitions - competitions are sorted by overall_sort
  • seasons - seasons are sorted by year
sort_orderxsd:string

Additional parameter for sort_type which determines the direction of sort (ascending, descending)
By default the value of "desc" is set. Possible values:

  • asc - sort ascending
  • desc - sort descending
area_idxsd:int

Determines the area represented by the participant. The complete list of possible areas can be retrieved using the API resource: areas.index

timestampxsd:unix_timestampSelection date, format UNIX_TIMESTAMP. Only changes in the seasons that occurred or were updated after this timestamp will be returned.

Method calling examples

https://api.statscore.com/v2/seasons.xml?token={{YOUR_TOKEN}}
Link
Description
Returns a list of season names in XML formathttps://api.statscore.com/v2/seasons?token={{YOUR_TOKEN}}Returns a list of season names in JSON format
https://api.statscore.com/v2/seasons.xml?token={{YOUR_TOKEN}}&competition_id=1507Returns the seasons played in the competition - Primera Division
https://api.statscore.com/v2/seasons.xml?token={{YOUR_TOKEN}}&sport_id=5Returns all competition seasons played in soccer
https://api.statscore.com/v2/seasons.xml?token={{YOUR_TOKEN}}&year=2014/15Returns all competition seasons played in the season year 2014/15.

...