v3

OpenAPI 3.1.0AGPL-3.0-or-later2026-07-311871891.1 MB
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.

namestring

Example response

[
  {
    "name": "Bullet",
    "points": [
      [
        2011,
        0,
        8,
        1472
      ],
      [
        2011,
        0,
        9,
        1332
      ],
      [
        2011,
        8,
        12,
        1314
      ]
    ]
  },
  {
    "name": "Blitz",
    "points": [
      [
        2011,
        7,
        29,
        1332
      ]
    ]
  }
]