Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /field_hockey/get_seasons
Returns all (authorized) seasons (that have been recently updated).
Request URL
https://dsg-api.com/clients/{client_name}/field_hockey/get_seasons?comp_id={competition_id}&client={client_name}&authkey={client_authkey}
API Threshold
- 10k calls per hour (2.78 calls per second)
- This threshold applies to ALL your calls you do across the API.
- Your number of calls get reset every hour at :00
- If the thresold is reached within the hour you will get a xml/json message accordingly (which is gone when the next hour starts, see previous point)
Parameters
authkey
string Required
client authentification key
client
string Required
unique client ID
comp_id
int Required
competition id to get seasons from
ftype
string
changes feed type from XML to json (ftype=json or ftype=json_array)
lang
string
two-character language code, defaults to 'en'
Nodes
competition❯
details about competition
area_id
unique identifier for an area
area_name
name of the area
competition_id
unique identifier for a competition
format
competition format (domestic_league, domestic_cup, domestic_league_cup, domestic_super_cup, international_cup, international_super_cup, playoff, tournament, race, unofficial)
gender
determines the gender of the competition (male or female)
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of the competition
type
determines if a competition is between club teams (club) or national teams (international)
datasportsgroup❯
details about the API version, sport, language and generation timestamp
generated_utc
UTC timestamp when the API output was generated
lang
language of the API call
sport
sport value
version
version of the API
method❯
details about the API function
method_id
unique ID of method
name
name of method
season❯
details about the season
end_date
end date, format 'yyyy-mm-dd'
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
logo
full path URL of logo for particular season
original_name
competition name during this season
season_id
unique identifier for season
start_date
start date, format 'yyyy-mm-dd'
title
title of season
Response Headers
200
Success
401
Unauthorized
429
Too Many Requests
Code Samples
<?php$ch = curl_init();curl_setopt($ch, CURLOPT_URL, "https://dsg-api.com/clients/{client_name}/field_hockey/get_seasons?comp_id={competition_id}&client={client_name}&authkey={client_authkey}");curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_USERPWD, "{User}:{Password}");$content = curl_exec($ch);curl_close($ch);?>curl GET -u "User:Password" "https://dsg-api.com/clients/{client_name}/field_hockey/get_seasons?comp_id={competition_id}&client={client_name}&authkey={client_authkey}"
Imports System
Imports System.Net
Imports System.IO
Imports System.Text
Public Module Module1
Public Sub Main()
Dim url As String = "https://dsg-api.com/clients/{client_name}/field_hockey/get_seasons?comp_id={competition_id}&client={client_name}&authkey={client_authkey}"
Dim myReq As WebRequest = WebRequest.Create(url)
myReq.Credentials = new System.Net.NetworkCredential("{User}", "{Password}")
Dim wr As WebResponse = myReq.GetResponse()
Dim receiveStream As Stream = wr.GetResponseStream()
Dim reader As StreamReader = New StreamReader(receiveStream, Encoding.UTF8)
Dim content As String = reader.ReadToEnd()
End Sub
End Module
response = requests.get("https://dsg-api.com/clients/{client_name}/field_hockey/get_seasons?comp_id={competition_id}&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example200 Success{"datasportsgroup":{"version":"2.197.3","sport":"field_hockey","lang":"en","generated_utc":"2025-08-01T15:05:24+00:00","method":{"method_id":"197","name":"get_seasons"},"competition":{"competition_id":"1957","name":"Summer Olympics","gender":"male","type":"international","format":"international_cup","area_id":"1","area_name":"World","last_updated":"2024-12-06 08:04:55","season":[{"season_id":"71712","title":"2024 Paris","original_name":"Summer Olympics","start_date":"2024-07-27","end_date":"2024-08-09","logo":"https:\/\/www.dsg-images.com\/comps\/200x200\/785_28.png","last_updated":"2024-12-06 08:04:08"},{"season_id":"43008","title":"2020 Tokyo","original_name":"Summer Olympics","start_date":"2021-07-24","end_date":"2021-08-05","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"16982","title":"2016 Rio de Janeiro","original_name":"Summer Olympics","start_date":"2016-08-06","end_date":"2016-08-18","logo":"https:\/\/www.dsg-images.com\/comps\/200x200\/1957.png","last_updated":"2024-12-06 08:04:08"},{"season_id":"16920","title":"2012 London","original_name":"Summer Olympics","start_date":"2012-07-30","end_date":"2012-08-11","logo":"https:\/\/www.dsg-images.com\/comps\/200x200\/1957.png","last_updated":"2024-12-06 08:04:08"},{"season_id":"32866","title":"2008 Beijing","original_name":"Summer Olympics","start_date":"2008-08-11","end_date":"2008-08-23","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"32867","title":"2004 Athens","original_name":"Summer Olympics","start_date":"2004-08-15","end_date":"2004-08-27","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"32889","title":"2000 Sydney","original_name":"Summer Olympics","start_date":"2000-09-16","end_date":"2000-09-30","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"32890","title":"1996 Atlanta","original_name":"Summer Olympics","start_date":"1996-07-20","end_date":"1996-08-02","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"32967","title":"1992 Barcelona","original_name":"Summer Olympics","start_date":"1992-07-26","end_date":"1992-08-08","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"32968","title":"1988 Seoul","original_name":"Summer Olympics","start_date":"1988-09-18","end_date":"1988-10-01","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"32969","title":"1984 Los Angeles","original_name":"Summer Olympics","start_date":"1984-07-29","end_date":"1984-08-11","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"32973","title":"1980 Moscow","original_name":"Summer Olympics","start_date":"1980-07-20","end_date":"1980-07-29","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33113","title":"1976 Montreal","original_name":"Summer Olympics","start_date":"1976-07-18","end_date":"1976-07-30","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33114","title":"1972 München","original_name":"Summer Olympics","start_date":"1972-08-27","end_date":"1972-09-10","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33128","title":"1968 Mexico","original_name":"Summer Olympics","start_date":"1968-10-23","end_date":"1968-10-26","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33161","title":"1964 Tokyo","original_name":"Summer Olympics","start_date":"1964-10-11","end_date":"1964-10-23","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33162","title":"1960 Rome","original_name":"Summer Olympics","start_date":"1960-08-26","end_date":"1960-09-11","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33378","title":"1956 Melbourne","original_name":"Summer Olympics","start_date":"1956-11-23","end_date":"1956-12-06","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33379","title":"1952 Helsinki","original_name":"Summer Olympics","start_date":"1952-07-15","end_date":"1952-07-25","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33380","title":"1948 London","original_name":"Summer Olympics","start_date":"1948-07-31","end_date":"1948-08-13","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33391","title":"1936 Berlin","original_name":"Summer Olympics","start_date":"1936-08-04","end_date":"1936-08-15","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33392","title":"1932 Los Angeles","original_name":"Summer Olympics","start_date":"1932-08-04","end_date":"1932-08-11","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33393","title":"1928 Amsterdam","original_name":"Summer Olympics","start_date":"1928-05-17","end_date":"1928-05-26","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33404","title":"1920 Antwerp","original_name":"Summer Olympics","start_date":"1920-09-01","end_date":"1920-09-05","logo":"","last_updated":"2024-12-06 08:04:08"},{"season_id":"33405","title":"1908 London","original_name":"Summer Olympics","start_date":"1908-10-29","end_date":"1908-10-31","logo":"","last_updated":"2024-12-06 08:04:08"}]}}}