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":"6fc47a13-3ba9-4b72-8457-8446ff87bdd4","userId":"9e6b9a32-3448-40f4-9af7-6bba66f0c535","creationDateTime":"2026-02-20T22:22:29.3608028+00:00","description":"Example description 1","isManuallyGiven":true,"value":10},{"id":"b0950874-a47b-44ed-8d32-558cadbe2fad","userId":"6267d6d3-4902-41da-a1bd-b178ee7e4b18","creationDateTime":"2026-02-20T22:22:29.3608028+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