Retrieve Player stats by date
GET {{baseUrl}}/{{version}}/stats/gameresults/player/1134?from_date=2020-12-31&to_date=2024-12-31&sport_id={{sport_id}}&team_id={{team_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
Key | Datatype | Required | Description |
---|---|---|---|
from_date | string | ||
to_date | string | ||
sport_id | string | ||
team_id | string |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Authorization | string | A 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":"4","res_assists":"2","res_steals":"4","res_offensive_rebounds":"7","res_defensive_rebounds":"4","res_rebounds_total":"8","res_personal_fouls":"2","res_turnovers":"10","res_blocks":"18","res_2ptm":"11","res_2pta":"4","res_2pt_missed":"-7","2pt_percentage":"275","res_ftm":"8","res_fta":"6","res_ft_missed":"-2","ft_percentage":"133","res_3ptm":"6","res_3pta":"6","res_3pt_missed":"0","3pt_percentage":"100"}]}