User last times
Description
Use this endpoint to retrieve a list of the last submitted times for an user.
Endpoint
GET https://api.gamerank.io/timeboard/{userid}/last/{count}
Request URL Parameters
Parameter | Description |
---|---|
userid | User unique identifier. Alpha-numerical ASCII characters only. |
count | How many times to retrieve. |
Example
GET https://api.gamerank.io/timeboard/82911/last/2
Response JSON body
Field | Type | Description |
---|---|---|
userid | string | User id used to store this time |
username | string | Displayable user name |
creation_time | millisecond timestamp | UTC timestamp in millisecond when this time has been submitted |
entry | int | Submitted time (in millisecond) |
[
{
"userid": "82911",
"username": "Bob",
"creation_time": 1728823954459,
"entry": 123100
},
{
"userid": "82911",
"username": "Bob",
"creation_time": 1728822811283,
"entry": 125400
}
]
HTTP status code
HTTP status | Reason(s) |
---|---|
200 | • OK |
400 | • Invalid user ID format • Invalid count value |
404 | • Unknown API key / timeboard • Unknown user |
500 | • Server Error, please contact support@gamerank.io |