Retrieve Player stats by date

GET {{baseUrl}}/{{version}}/stats/gameresults/player/1134?to_date=2024-12-31&from_date=2022-12-31&team_id={{team_id}}&sport_id={{sport_id}}

It returns the Wins and Loss ratio for a given team on a period of time. This endpoint utilises the data that is provided by the Gameresults

Request Params

KeyDatatypeRequiredDescription
to_datestring
from_datestring
team_idstring
sport_idstring

HEADERS

KeyDatatypeRequiredDescription
AuthorizationstringA valid JWT token

RESPONSES

status: OK

{"error":false,"code":200,"message":"Returns the overall game results for a player by a period of time.","response":[{"res_points":"2","res_assists":"1","res_steals":"2","res_offensive_rebounds":"5","res_defensive_rebounds":"2","res_rebounds_total":"7","res_personal_fouls":"1","res_turnovers":"5","res_blocks":"9","res_2ptm":"3","res_2pta":"2","res_2pt_missed":"-1","2pt_percentage":"150","res_ftm":"4","res_fta":"3","res_ft_missed":"-1","ft_percentage":"133","res_1ptm":"8","res_1pta":"6","res_1pt_missed":"0","1pt_percentage":"133"}]}