Users
Get rating history of a user
Read rating history of a user, for all perf types. There is at most one entry per day. Format of an entry is [year, month, day, rating]. month starts at zero (January).
get/api/user/{username}/rating-history
Path parameters
usernamestring required
Response
The rating history of the user.
Example response
[
{
"name": "Bullet",
"points": [
[
2011,
0,
8,
1472
],
[
2011,
0,
9,
1332
],
[
2011,
8,
12,
1314
]
]
},
{
"name": "Blitz",
"points": [
[
2011,
7,
29,
1332
]
]
}
]