Retrive the game results for a player
GET {{baseUrl}}/{{version}}/stats/gameresults/player/{{user_id}}?from_date=2022-01-01&to_date=2022-02-25
This endpoint allow you to get back a game result of a player.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
from_date | string | date | |
to_date | string | date |
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":null,"res_assists":null,"res_steals":null,"res_offensive_rebounds":null,"res_defensive_rebounds":null,"res_rebounds_total":null,"res_personal_fouls":null,"res_turnovers":null,"res_blocks":null,"res_fgm":null,"res_fga":null,"res_fg_missed":null,"fg_percentage":null,"res_ftm":null,"res_fta":null,"res_ft_missed":null,"ft_percentage":null,"res_3fgm":null,"res_3fga":null,"res_3ft_missed":null,"3fg_percentage":null}]}