Relesys API Docs

v1.1

https://api.relesysapp.net/api/v1.1

Points

Get Points
GET /highscores/{highscoreId}/points
https://api.relesysapp.net/api/v1.1/highscores/{highscoreId}/points
Get a list of all points given for the highscore with ID highscoreId.
Default sort is by creationDateTime in ascending order.
isManuallyGiven indicates whether a point entry has been manually given or not.
Scopes: relesys.api, relesys.api:read, relesys.api.highscores, relesys.api.highscores:read
URL Path
highscoreId string / guid required
Query String
creationDateTime datetimeoffset Filterable Sortable optional
id string / guid Filterable optional
isManuallyGiven boolean Filterable optional
userId string / guid Filterable optional
sort string Comma separated sort order based on sortable properties optional
offset integer Offset value for use in pagination Default: 0 optional
limit integer Total objects to fetch (max 1000) Default: 200 optional
Responses
application/json
JSON
{"count":2,"data":[{"id":"cff4d124-a872-47c0-a535-989c66d7b3f2","userId":"5ca186ba-b0c6-4e47-a58b-81ef8c9d7bbe","creationDateTime":"2026-06-07T16:06:01.6709202+00:00","description":"Example description 1","isManuallyGiven":true,"value":10},{"id":"4d195a53-3680-4175-bf11-643011d0f51c","userId":"5f782e5e-6074-47bc-b87e-93a4466d01ec","creationDateTime":"2026-06-07T16:06:01.6709202+00:00","description":"Example description 2","isManuallyGiven":false,"value":25}]}
object
  count integer      
  data array[object]      
   creationDateTime datetimeoffset      
   description string      
   id string / guid      
   isManuallyGiven boolean      
   userId string / guid      
   value integer      
  nextUrl string      
  previousUrl string