GET Race Results by Season and Team
This endpoint returns the race results for a provided season ID and team ID. The endpoint includes all the stages, fixtures, lineups and lineup details for a season and team.
https://api.sportmonks.com/v3/motorsport/results/seasons/SEASON_ID/teams/TEAM_ID{
"data": [
{
"id": 77476128,
"sport_id": 2,
"league_id": 3468,
"season_id": 25273,
"type_id": 9724,
"name": "Formula 1 Etihad Airways Abu Dhabi Grand Prix",
"sort_order": 24,
"finished": true,
"is_current": false,
"starting_at": "2025-12-05",
"ending_at": "2025-12-07",
"games_in_current_week": false,
"tie_breaker_rule_id": 573,
"fixtures": [
{
"id": 19408487,
"sport_id": 2,
"league_id": 3468,
"season_id": 25273,
"stage_id": 77476128,
"group_id": null,
"aggregate_id": null,
"round_id": null,
"state_id": 5,
"venue_id": 343598,
"name": "Race",
"starting_at": "2025-12-07 13:00:00",
"result_info": null,
"leg": "1/1",
"details": null,
"length": null,
"placeholder": false,
"has_odds": false,
"has_premium_odds": false,
"starting_at_timestamp": 1765112400,
"lineups": [
{
"id": 14671697693,
"sport_id": 2,
"fixture_id": 19408487,
"player_id": 37920802,
"team_id": 276191,
"position_id": 9730,
"type_id": 11,
"grid_position": 2,
"driver_name": "Lando Norris",
"driver_number": 4,
"details": [
{
"id": 1816685645,
"fixture_id": 19408487,
"player_id": 37920802,
"team_id": 276191,
"lineup_id": 14671697693,
"type_id": 9711,
"data": {
"position": 3
}
},
// More results...
]
},
{
"id": 14671697710,
"sport_id": 2,
"fixture_id": 19408487,
"player_id": 37920805,
"team_id": 276191,
"position_id": 9731,
"type_id": 11,
"grid_position": 3,
"driver_name": "Oscar Piastri",
"driver_number": 81,
"details": [
{
"id": 1816685713,
"fixture_id": 19408487,
"player_id": 37920805,
"team_id": 276191,
"lineup_id": 14671697710,
"type_id": 9711,
"data": {
"position": 2
}
},
// More results...
]
}
]
},
// More fixtures...
]
},
// More stages...
]
}Field
Description
Type
Field
Description
Type
Query Parameters
Required?
Description
Pagination
Include depth
Include options
Code Example
require "uri"
require "net/http"
url = URI("https://api.sportmonks.com/v3/motorsport/results/seasons/25273/teams/276191?api_token={your_token}")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Get.new(url)
response = https.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("api.sportmonks.com")
payload = ''
headers = {}
conn.request("GET", "/v3/motorsport/results/seasons/25273/teams/276191?api_token={your_token}", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))Last updated
Was this helpful?