Relesys API Docs

v1

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

Points

Get Points
GET /highscores/{highscoreId}/points
https://api.relesysapp.net/api/v1/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":"deac2858-ef03-4c87-8ccd-e1ca96b61351","userId":"9e1ae809-ddb9-4823-9fb8-63ccb0542ca5","creationDateTime":"2026-04-17T11:29:57.0149891+00:00","description":"Example description 1","isManuallyGiven":true,"value":10},{"id":"92d47957-e8d8-42be-8f3e-76801fc1dead","userId":"57a85156-ddc0-42ae-a071-c7cc0b452c38","creationDateTime":"2026-04-17T11:29:57.0149891+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