Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /motorsports/get_competitions
Returns all competitions from an area.
Request URL
https://dsg-api.com/clients/{client_name}/motorsports/get_competitions?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
area_id
int
area to get the subareas or specific area from
authkey
string Required
client authentification key
client
string Required
unique client ID
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
area
details about area
area_id
unique identifier for an area
country_code
three character country code
iso_code
official three character ISO code (not all areas will have an ISO code)
name
name of the area
parent_area_id
unique identifier of the parent area (either continent or World)
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
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}/motorsports/get_competitions?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}/motorsports/get_competitions?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}/motorsports/get_competitions?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}/motorsports/get_competitions?client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"2.1181.3","sport":"motorsports","lang":"en","generated_utc":"2025-08-01T15:18:39+00:00","method":{"method_id":"1181","name":"get_competitions"},"competition":[{"competition_id":"4308","name":"Argentine Republic Grand Prix","gender":"male","type":"player","format":"race","area_id":"16","area_name":"Argentina","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1880","name":"Australian Grand Prix","gender":"male","type":"player","format":"race","area_id":"19","area_name":"Australia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4322","name":"Australian Grand Prix","gender":"male","type":"player","format":"race","area_id":"19","area_name":"Australia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1889","name":"Austrian Grand Prix","gender":"male","type":"player","format":"race","area_id":"20","area_name":"Austria","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4316","name":"Austrian Grand Prix","gender":"male","type":"player","format":"race","area_id":"20","area_name":"Austria","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1884","name":"Azerbaijan Grand Prix","gender":"male","type":"player","format":"race","area_id":"21","area_name":"Azerbaijan","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1882","name":"Bahrain Grand Prix","gender":"male","type":"player","format":"race","area_id":"23","area_name":"Bahrain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1893","name":"Belgian Grand Prix","gender":"male","type":"player","format":"race","area_id":"27","area_name":"Belgium","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4328","name":"24h Spa EWC Motos","gender":"male","type":"player","format":"race","area_id":"27","area_name":"Belgium","last_updated":"2023-06-13 16:00:54"},{"competition_id":"1900","name":"Brazilian Grand Prix","gender":"male","type":"player","format":"race","area_id":"35","area_name":"Brazil","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1887","name":"Canadian Grand Prix","gender":"male","type":"player","format":"race","area_id":"43","area_name":"Canada","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2352","name":"Indy Toronto","gender":"male","type":"player","format":"race","area_id":"43","area_name":"Canada","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2075","name":"Santiago ePrix","gender":"male","type":"player","format":"race","area_id":"48","area_name":"Chile","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5020","name":"Rally Chile","gender":"both","type":"player","format":"race","area_id":"48","area_name":"Chile","last_updated":"2024-01-28 09:58:25"},{"competition_id":"2565","name":"Sanya ePrix","gender":"male","type":"player","format":"race","area_id":"49","area_name":"China PR","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1883","name":"Chinese Grand Prix","gender":"male","type":"player","format":"race","area_id":"49","area_name":"China PR","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5009","name":"Croatia Rally","gender":"both","type":"player","format":"race","area_id":"56","area_name":"Croatia","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5007","name":"Czech Rally","gender":"both","type":"player","format":"race","area_id":"59","area_name":"Czechia","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5017","name":"Rally Estonia","gender":"both","type":"player","format":"race","area_id":"71","area_name":"Estonia","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5021","name":"Central European Rally","gender":"both","type":"player","format":"race","area_id":"7","area_name":"Europe","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5018","name":"Rally Finland","gender":"both","type":"player","format":"race","area_id":"75","area_name":"Finland","last_updated":"2024-01-28 09:58:25"},{"competition_id":"2079","name":"Paris ePrix","gender":"male","type":"player","format":"race","area_id":"76","area_name":"France","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1888","name":"French Grand Prix","gender":"male","type":"player","format":"race","area_id":"76","area_name":"France","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4063","name":"Bol d'Or","gender":"male","type":"player","format":"race","area_id":"76","area_name":"France","last_updated":"2023-06-13 15:56:38"},{"competition_id":"4064","name":"24 Heures Motos","gender":"male","type":"player","format":"race","area_id":"76","area_name":"France","last_updated":"2023-06-13 15:59:19"},{"competition_id":"4311","name":"French Motorcycle Grand Prix","gender":"male","type":"player","format":"race","area_id":"76","area_name":"France","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2080","name":"Berlin ePrix","gender":"male","type":"player","format":"race","area_id":"80","area_name":"Germany","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1891","name":"German Grand Prix","gender":"male","type":"player","format":"race","area_id":"80","area_name":"Germany","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2835","name":"Eifel Grand Prix","gender":"male","type":"player","format":"race","area_id":"80","area_name":"Germany","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4313","name":"German Grand Prix","gender":"male","type":"player","format":"race","area_id":"80","area_name":"Germany","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2598","name":"London ePrix","gender":"male","type":"player","format":"race","area_id":"250","area_name":"Great Britain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1890","name":"British Grand Prix","gender":"male","type":"player","format":"race","area_id":"250","area_name":"Great Britain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4315","name":"British Grand Prix","gender":"male","type":"player","format":"race","area_id":"250","area_name":"Great Britain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5008","name":"Rali Ceredigion","gender":"both","type":"player","format":"race","area_id":"250","area_name":"Great Britain","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5016","name":"Rally Greece","gender":"both","type":"player","format":"race","area_id":"82","area_name":"Greece","last_updated":"2024-01-28 09:58:25"},{"competition_id":"2073","name":"Hong Kong ePrix","gender":"male","type":"player","format":"race","area_id":"91","area_name":"Hong Kong SAR","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1892","name":"Hungarian Grand Prix","gender":"male","type":"player","format":"race","area_id":"92","area_name":"Hungary","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5003","name":"Rally Hungary","gender":"both","type":"player","format":"race","area_id":"92","area_name":"Hungary","last_updated":"2024-01-28 09:58:25"},{"competition_id":"4319","name":"Indian Grand Prix","gender":"male","type":"player","format":"race","area_id":"94","area_name":"India","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2597","name":"Jakarta ePrix","gender":"male","type":"player","format":"race","area_id":"95","area_name":"Indonesia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4321","name":"Indonesian Grand Prix","gender":"male","type":"player","format":"race","area_id":"95","area_name":"Indonesia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2078","name":"Rome ePrix","gender":"male","type":"player","format":"race","area_id":"100","area_name":"Italy","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1894","name":"Italian Grand Prix","gender":"male","type":"player","format":"race","area_id":"100","area_name":"Italy","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2834","name":"Tuscan Grand Prix","gender":"male","type":"player","format":"race","area_id":"100","area_name":"Italy","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2837","name":"Emilia Romagna Grand Prix","gender":"male","type":"player","format":"race","area_id":"100","area_name":"Italy","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4312","name":"Italian Grand Prix","gender":"male","type":"player","format":"race","area_id":"100","area_name":"Italy","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5006","name":"Rally di Roma Capitale","gender":"both","type":"player","format":"race","area_id":"100","area_name":"Italy","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5015","name":"Rally Italia Sardegna","gender":"both","type":"player","format":"race","area_id":"100","area_name":"Italy","last_updated":"2024-01-28 09:58:25"},{"competition_id":"1897","name":"Japanese Grand Prix","gender":"male","type":"player","format":"race","area_id":"102","area_name":"Japan","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4320","name":"Japanese Grand Prix","gender":"male","type":"player","format":"race","area_id":"102","area_name":"Japan","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4329","name":"Suzuka 8 Hours","gender":"male","type":"player","format":"race","area_id":"102","area_name":"Japan","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5022","name":"Rally Japan","gender":"both","type":"player","format":"race","area_id":"102","area_name":"Japan","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5012","name":"Rally Kenya","gender":"both","type":"player","format":"race","area_id":"105","area_name":"Kenya","last_updated":"2024-01-28 09:58:25"},{"competition_id":"2596","name":"Seoul ePrix","gender":"male","type":"player","format":"race","area_id":"107","area_name":"Korea Republic","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2225","name":"Malaysian Grand Prix","gender":"male","type":"player","format":"race","area_id":"123","area_name":"Malaysia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4324","name":"Malaysian Grand Prix","gender":"male","type":"player","format":"race","area_id":"123","area_name":"Malaysia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2076","name":"Mexico City ePrix","gender":"male","type":"player","format":"race","area_id":"129","area_name":"Mexico","last_updated":"2020-11-10 14:19:25"},{"competition_id":"3028","name":"Puebla ePrix","gender":"male","type":"player","format":"race","area_id":"129","area_name":"Mexico","last_updated":"2021-04-25 22:16:49"},{"competition_id":"1899","name":"Mexican Grand Prix","gender":"male","type":"player","format":"race","area_id":"129","area_name":"Mexico","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2566","name":"Monaco ePrix","gender":"male","type":"player","format":"race","area_id":"253","area_name":"Monaco","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1886","name":"Monaco Grand Prix","gender":"male","type":"player","format":"race","area_id":"253","area_name":"Monaco","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5010","name":"Rallye Monte-Carlo","gender":"both","type":"player","format":"race","area_id":"253","area_name":"Monaco","last_updated":"2024-01-28 09:58:25"},{"competition_id":"2074","name":"Marrakesh ePrix","gender":"male","type":"player","format":"race","area_id":"133","area_name":"Morocco","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2563","name":"Dutch Grand Prix","gender":"male","type":"player","format":"race","area_id":"138","area_name":"Netherlands","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4314","name":"Dutch TT","gender":"male","type":"player","format":"race","area_id":"138","area_name":"Netherlands","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5019","name":"Rally del Paraguay","gender":"both","type":"player","format":"race","area_id":"152","area_name":"Paraguay","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5005","name":"Rally Poland","gender":"both","type":"player","format":"race","area_id":"155","area_name":"Poland","last_updated":"2024-01-28 09:58:25"},{"competition_id":"2836","name":"Portuguese Grand Prix","gender":"male","type":"player","format":"race","area_id":"156","area_name":"Portugal","last_updated":"2023-06-13 15:34:05"},{"competition_id":"4307","name":"Portuguese Grand Prix","gender":"male","type":"player","format":"race","area_id":"156","area_name":"Portugal","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5014","name":"Rally de Portugal","gender":"both","type":"player","format":"race","area_id":"156","area_name":"Portugal","last_updated":"2024-01-28 09:58:25"},{"competition_id":"3213","name":"Qatar Grand Prix","gender":"male","type":"player","format":"race","area_id":"158","area_name":"Qatar","last_updated":"2021-10-12 16:59:31"},{"competition_id":"4325","name":"Qatar Grand Prix","gender":"male","type":"player","format":"race","area_id":"158","area_name":"Qatar","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1896","name":"Russian Grand Prix","gender":"male","type":"player","format":"race","area_id":"160","area_name":"Russia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4318","name":"San Marino Grand Prix","gender":"male","type":"player","format":"race","area_id":"163","area_name":"San Marino","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2564","name":"Ad Diriyah ePrix","gender":"male","type":"player","format":"race","area_id":"164","area_name":"Saudi Arabia","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2948","name":"Saudi Arabian Grand Prix","gender":"male","type":"player","format":"race","area_id":"164","area_name":"Saudi Arabia","last_updated":"2021-01-12 10:26:41"},{"competition_id":"5023","name":"Rally Saudi Arabia","gender":"both","type":"player","format":"race","area_id":"164","area_name":"Saudi Arabia","last_updated":"2024-01-28 09:58:25"},{"competition_id":"1895","name":"Singapore Grand Prix","gender":"male","type":"player","format":"race","area_id":"170","area_name":"Singapore","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2981","name":"Valencia ePrix","gender":"male","type":"player","format":"race","area_id":"176","area_name":"Spain","last_updated":"2021-03-09 11:52:59"},{"competition_id":"1885","name":"Spanish Grand Prix","gender":"male","type":"player","format":"race","area_id":"176","area_name":"Spain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4310","name":"Spanish Grand Prix","gender":"male","type":"player","format":"race","area_id":"176","area_name":"Spain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4317","name":"Catalan Grand Prix","gender":"male","type":"player","format":"race","area_id":"176","area_name":"Spain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4326","name":"Valencian Community Grand Prix","gender":"male","type":"player","format":"race","area_id":"176","area_name":"Spain","last_updated":"2020-11-10 14:19:25"},{"competition_id":"5002","name":"Rally Sierra Morena","gender":"both","type":"player","format":"race","area_id":"176","area_name":"Spain","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5013","name":"Rally Islas Canarias","gender":"both","type":"player","format":"race","area_id":"176","area_name":"Spain","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5004","name":"Royal Rally of Scandinavia","gender":"both","type":"player","format":"race","area_id":"184","area_name":"Sweden","last_updated":"2024-01-28 09:58:25"},{"competition_id":"5011","name":"Rally Sweden","gender":"both","type":"player","format":"race","area_id":"184","area_name":"Sweden","last_updated":"2024-01-28 09:58:25"},{"competition_id":"2081","name":"Swiss ePrix","gender":"male","type":"player","format":"race","area_id":"185","area_name":"Switzerland","last_updated":"2020-11-10 14:19:25"},{"competition_id":"4323","name":"Thailand Motorcycle Grand Prix","gender":"male","type":"player","format":"race","area_id":"191","area_name":"Thailand","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2939","name":"Turkish Grand Prix","gender":"male","type":"player","format":"race","area_id":"196","area_name":"Türkiye","last_updated":"2020-12-17 09:43:50"},{"competition_id":"1901","name":"Abu Dhabi Grand Prix","gender":"male","type":"player","format":"race","area_id":"202","area_name":"United Arab Emirates","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2082","name":"New York ePrix","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"1898","name":"United States Grand Prix","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2343","name":"Grand Prix of St. Petersburg","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2344","name":"IndyCar Classic","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2345","name":"Indy Grand Prix of Alabama","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2346","name":"Grand Prix of Long Beach","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2347","name":"IndyCar Grand Prix","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2348","name":"Indianapolis 500","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2349","name":"Detroit Grand Prix","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2350","name":"Genesys 600","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2351","name":"Grand Prix at Road America","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2353","name":"Iowa 300","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2354","name":"Indy 200 at Mid-Ohio","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2355","name":"ABC Supply 500","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2356","name":"Bommarito Automotive Group 500","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2357","name":"Grand Prix of Portland","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2358","name":"Grand Prix of Monterey","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2721","name":"Indy Richmond 300","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"3474","name":"Miami Grand Prix","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2022-01-16 11:16:42"},{"competition_id":"4003","name":"Las Vegas Grand Prix","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2023-01-04 11:05:09"},{"competition_id":"4309","name":"Grand Prix of the Americas","gender":"male","type":"player","format":"race","area_id":"203","area_name":"United States","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2077","name":"Punta del Este ePrix","gender":"male","type":"player","format":"race","area_id":"204","area_name":"Uruguay","last_updated":"2020-11-10 14:19:25"},{"competition_id":"2562","name":"Vietnam Grand Prix","gender":"male","type":"player","format":"race","area_id":"208","area_name":"Vietnam","last_updated":"2020-11-10 14:19:25"}]}}