unicum.gg

My ratings

GET
/{region}/ratings/mine

Every vehicle the caller has rated, newest first. Its job is to let a page know what is already done: a signed-in player's own garage uses it to suggest the tanks they play most and have not judged yet, which is where most votes come from. Region-independent like the votes themselves, so the same list is served whichever region the page was opened on. Signed out answers an empty list rather than a 401: the caller is asking what they have rated, and "nothing" is the true answer.

Path Parameters

region*string

Game server region.

Value in

  • "eu"
  • "na"
  • "asia"

Response Body

application/json

curl -X GET "https://example.com/eu/ratings/mine"
{  "ratings": [    {      "tankId": 0,      "overall": 0,      "fun": 0,      "battles": 0,      "reviewStatus": "none",      "updatedAt": "2019-08-24T14:15:22Z"    }  ]}