Login page:
/api-auth/login/
All match data:
/api/all-match-data/
This includes a POST request for adding more data and a GET request for listing all the data.
Gold advantage winrate:
/api/stats/gold_advantage_win_rate/
Calculates the percentage of matches where the team with more gold wins.
First blood winrate:
/api/stats/first_blood_win_rate/
Calculates the percentage of matches where the team that secured first blood wins.
Show average game length excluding games shorter than 3 minutes
/api/stats/average_game_length
Show average CS/min for all games
/api/stats/average_cs_per_min
Show matches by custom length
/api/matches-by-length/?max_length=15&min_length=3
Filter games by min/max length with query parameters. (eg. ?max_length=15 will show all games less than or equal to 15 minutes long)