Center REST API
The SPORTident Center REST API provides a simple and efficient interface to interact with SPORTident Center.
Access the Center API at https://center-origin.sportident.com. SPORTident Center itself is available at https://center.sportident.com.
Getting started
Example: API version
Use the versions endpoint as the starting point with the Center API. You can also simply paste the endpoint URL into a webbrowser to get the response.
HTTP verbs
Verb | Usage |
---|---|
GET | Used to retrieve a resource. |
POST | Used to create a new resource. This includes requests for starting a process, for submitting a web form, and other types of requests that are generally not idempotent. |
PUT | Used to create a new resource or replace an existing resource. Some requests allow partial updates. PUT requests are idempotent. |
DELETE | Used to delete an existing resource. |
HTTP status codes
Status code | Usage |
---|---|
200 OK | The request has completed successfully. |
201 Created | A new resource has been created successfully. The resource’s URI is available from the response’s Location header. |
202 Accepted | The request has been accepted for processing, but processing is not yet completed. The response includes the ID of the asynchronous task in the X-Async-Task-Id header for checking the progress of the task. The task is not guaranteed to complete successfully. |
204 No Content | An update to an existing resource has been applied successfully. The response does not include any payload. |
400 Bad Request | The request was malformed or contains invalid data. The response body includes further information on the error. |
401 Unauthorized | An invalid access token was provided in the request. The response body includes further information on the error. |
402 Payment Required | The action could not be completed because it requires a valid subscription or payment. |
403 Access Denied | Access to the requested resource has been denied. The response body includes further information on the error. |
404 Not Found | The requested resource does not exist. |
405 Method Not Allowed | The request method is not allowed for this API endpoint. |
406 Not Acceptable | The requested resource is generating content that is not acceptable according to the Accept header sent in the request. |
410 Gone | The requested resource no longer exists. |
415 Unsupported Media Type | The media type of the request is not supported. |
HTTP compression
SPORTident Center supports HTTP compression on upload (POST method) and download (for all methods, but only for content-type “application/json”, “text/xml” and “text/csv”).
To upload gzip-compressed
data to the server, the client needs to set the header Content-Encoding: gzip
.
To request a gzip-compressed response, the client may set the header Accept-Encoding: gzip
. The response may or may not be compressed, which is indicated by whether the Content-Encoding: gzip
header is set in the response or not. Very small payloads are not compressed.
Retrieve punches
Resource URL
GET /api/rest/v1/punches
Description
Retrieve punches (timing records). These punches are typically uploaded to Center from LTE Modems or the Mobile Reader App. Punches can be retrieved in json
and csv
format. Up to 1000 punches are returned with one request.
We strongly recommend to always use the parameters after
and afterId
.
The typical use case for retrieving live punches looks like this:
- Request punches with the filter set to
modem
,user
oreventId
, or a combination of those. Setafter
to your event zero time (e.g. 00:00:00 of the event date) andafterId
to 0. - Process the response, keep note of the latest
id
- Request punches with the same parameters again, only with
afterId
now set to the latestid
from the last response — you will only receive new punches since your last request - Repeat, with
afterId
always being set to the latestid
you previously received
Please also refer to example 1 and example 2 below for an illustration of what this typical use case can look like.
We use milliseconds since the Epoch (1970-01-01 00:00:00) as the time format. As an example, with Bash you can convert time formats as follows:
# Convert from ms since epoch to a human readable format$ DATETIME_IN_MS_SINCE_EPOCH="1739890563835"$ date -d @$(echo "${DATETIME_IN_MS_SINCE_EPOCH} / 1000" | bc) +"%Y-%m-%dT%H:%M:%SZ"2025-02-18T15:56:03Z
# Convert from a human readable format to ms since epoch$ DATETIME_HUMAN_READABLE="2025-02-01T00:00:00Z"$ date -d "${DATETIME_HUMAN_READABLE}" +%s%3N1738368000000
And here’s the same example with Powershell:
# Convert from ms since epoch to a human readable format$ $datetimeInMsSinceEpoch = 1739890563835$ $epoch = [datetime]'1970-01-01T00:00:00Z'$ $epoch.AddMilliseconds($datetimeInMsSinceEpoch).ToString("yyyy-MM-ddTHH:mm:ssZ")2025-02-18T15:56:03Z
# Convert from a human readable format to ms since epoch$ $datetimeHumanReadable = Get-Date "2025-02-01T00:00:00Z"$ $epoch = [datetime]'1970-01-01T00:00:00Z'$ ($datetimeHumanReadable - $epoch).TotalMilliseconds1738368000000
Query parameters
Parameter | Description |
---|---|
modem | List of modem serial numbers (strings), separated by comma |
eventId | One single event. Event id. |
user | A single user. Username. (Refers to the modem user, not the modem owner.) |
afterId (optional) | Get all punches after (> ) this id |
after (optional) | Return punches after (>= ) this punch time (local time) in milliseconds since the Epoch (1970-01-01 00:00:00) |
Only one of the three parameters modem
, eventId
, and user
needs to be provided. All other parameters are optional.
Request headers
Name | Description |
---|---|
Accept | Requested format: application/json (default, if header is omitted) or text/csv |
Response headers
Name | Description |
---|---|
X-Total-Count | Total number of matching punches |
Response format
Field | Description |
---|---|
id | Punch id. Unsigned integer and always greater than zero. |
card | Card number. String. |
time | Punch time (local time) in milliseconds since the Epoch (1970-01-01 00:00:00). |
code | Control code. Unsigned integer. |
type | Punch type. String. Supported values: “Unknown”, “Control”, “Start”, “Finish”, “Check”, “Clear”. Additional values might be added in the future. |
modem | Modem number. String. |
receptionTimeUtc | Time when Center received the punch. UTC time, in milliseconds since the Epoch (1970-01-01 00:00:00). |
Examples
Example 1
Curl request
$ curl 'https://center-origin.sportident.com/api/rest/v1/punches?modem=9000061,9000062&after=1739833200000&afterId=0' \ -i -X GET -H 'Accept: text/csv'
HTTP request
GET /api/rest/v1/punches?modem=9000061,9000062&after=1739833200000&afterId=0 HTTP/2Host: center-origin.sportident.comAccept: text/csv
HTTP response
HTTP/2 200content-type: text/csv;charset=UTF-8x-total-count: 52
id,card,time,code,type,modem,receptionTimeUtc5985523,8632419,1739890563835,66,Unknown,9000061,17398869560005985524,8632419,1739890592902,67,Unknown,9000062,17398869800005985525,8632416,1739890611000,1,Unknown,9000061,17398870060005985526,8632416,1739880900027,2,Unknown,9000061,17398870060005985527,8632416,1739890613671,66,Unknown,9000061,17398870150005985528,8632416,1739890633558,67,Unknown,9000062,17398870210005986145,8527495,1740585637289,31,Control,9000062,17405820350005986156,8527495,1740586132187,31,Control,9000061,17405825300005986157,16777215,1740589993531,33,Control,9000061,17405828350005986158,16777215,1740589998960,33,Control,9000061,17405828410005986159,16777215,1740590026863,33,Control,9000061,17405828690005986160,16777215,1740590037386,33,Control,9000061,17405828790005986161,16777215,1740590044304,33,Control,9000061,17405828860005986162,16777215,1740590048953,33,Control,9000061,17405828920005986163,16777215,1740590058835,33,Control,9000061,17405829000005986164,16777215,1740590065527,33,Control,9000061,17405829070005986165,16777215,1740590071902,33,Control,9000061,17405829130005986166,16777215,1740590083226,33,Control,9000061,17405829260005986167,16777215,1740590098324,33,Control,9000061,17405829400005986168,16777215,1740590109171,33,Control,9000061,17405829520005986169,16777215,1740590128562,33,Control,9000061,17405829930005986170,16777215,1740590134164,33,Control,9000061,17405829930005986171,16777215,1740590144687,33,Control,9000061,17405829930005986665,63371,1740829374980,3,Unknown,9000061,17408257740005986666,63371,1740829398101,31,Unknown,9000061,17408258000005986667,63371,1740829400769,109,Unknown,9000061,17408258020005986668,63371,1740829431527,4,Unknown,9000061,17408258280005986669,57905,1740829627605,3,Unknown,9000061,17408260270005986670,1407566,1740829632429,3,Unknown,9000061,17408260320005986671,8635492,1740829665402,3,Unknown,9000061,17408260640005986672,224502,1740830061218,3,Unknown,9000061,17408264610005986673,8635492,1740830145386,31,Control,9000061,17408265460005986674,57905,1740830260812,31,Unknown,9000061,17408266630005986675,1407566,1740830319574,31,Unknown,9000061,17408267220005986676,8635492,1740830332410,109,Control,9000061,17408267340005986677,57905,1740830358355,109,Unknown,9000061,17408267600005986678,251791,1740830595359,3,Unknown,9000061,17408269950005986679,8635492,1740830616937,100,Control,9000061,17408270160005986680,8635492,1740830657722,4,Finish,9000061,17408270540005986681,224502,1740830706257,31,Unknown,9000061,17408271080005986682,224502,1740831213984,109,Unknown,9000061,17408276160005986683,251791,1740831272250,31,Unknown,9000061,17408276740005986684,57905,1740831301976,4,Unknown,9000061,17408276980005986685,253066,1740831655847,3,Unknown,9000061,17408280550005986686,224502,1740832081558,4,Unknown,9000061,17408284770005986687,1407566,1740832112136,109,Unknown,9000061,17408285140005986688,251791,1740832573351,109,Unknown,9000061,17408289760005986689,253066,1740832599542,31,Unknown,9000061,17408290010005986690,253066,1740832821960,109,Unknown,9000061,17408292240005986691,1407566,1740833032843,4,Unknown,9000061,17408294290005986692,253066,1740833146835,4,Unknown,9000061,17408295430005986693,251791,1740833244988,4,Unknown,9000061,1740829641000
Example 2
Curl request
$ curl 'https://center-origin.sportident.com/api/rest/v1/punches?modem=9000061,9000062&after=1739833200000&afterId=5986693' \ -i -X GET -H 'Accept: text/csv'
HTTP request
GET /api/rest/v1/punches?modem=9000061,9000062&after=1739833200000&afterId=5986693 HTTP/2Host: center-origin.sportident.comAccept: text/csv
HTTP response
HTTP/2 200content-type: text/csv;charset=UTF-8x-total-count: 0
id,card,time,code,type,modem,receptionTimeUtc
Example 3
Curl request
$ curl 'https://center-origin.sportident.com/api/rest/v1/punches?user=burkhard&after=1738364400000&afterId=0' \ -i -X GET -H 'Accept: text/csv'
HTTP request
GET /api/rest/v1/punches?user=burkhard&after=1738364400000&afterId=0 HTTP/2Host: center-origin.sportident.comAccept: text/csv
HTTP response
HTTP/2 200content-type: text/csv;charset=UTF-8x-total-count: 6
id,card,time,code,type,modem,receptionTimeUtc5985523,8632419,1739890563835,66,Unknown,9000061,17398869560005985524,8632419,1739890592902,67,Unknown,9000062,17398869800005985525,8632416,1739890611000,1,Unknown,9000061,17398870060005985526,8632416,1739880900027,2,Unknown,9000061,17398870060005985527,8632416,1739890613671,66,Unknown,9000061,17398870150005985528,8632416,1739890633558,67,Unknown,9000062,1739887021000
Example 4
Curl request
$ curl 'https://center-origin.sportident.com/api/rest/v1/punches?eventId=15078&modem=9000041&afterId=0' \ -i -X GET -H 'Accept: application/json'
HTTP request
GET /api/rest/v1/punches?eventId=15078&modem=9000041&afterId=0 HTTP/2Host: center-origin.sportident.comAccept: application/json
HTTP response
HTTP/2 200content-type: application/json;charset=UTF-8x-total-count: 4
[{"id":5955277,"card":2091631,"time":1732056641453,"code":31,"type":"Unknown","modem":"9000041","receptionTimeUtc":1732049416000},{"id":5955278,"card":8770570,"time":1732097328835,"code":51,"type":"Unknown","modem":"9000041","receptionTimeUtc":1732093731000},{"id":5955279,"card":8770570,"time":1732097483386,"code":51,"type":"Unknown","modem":"9000041","receptionTimeUtc":1732093885000},{"id":5955280,"card":2228404,"time":1732101135195,"code":31,"type":"Unknown","modem":"9000041","receptionTimeUtc":1732093910000}]
Versions
Resource URL
GET /api/rest/v1/public/versions
Description
Get the internal and public version of the Center API.
Request headers
Name | Description |
---|---|
Accept | Requested format: application/json (default, if header is omitted) |
Response format
Field | Description |
---|---|
internalApiVersion | Internal API version. |
publicApiVersion | Public API version. For breaking changes, the major version will increase. |
Examples
Example 1
Curl request
$ curl 'https://center-origin.sportident.com/api/rest/v1/public/versions' \ -i -X GET -H 'Accept: application/json'
HTTP request
GET /api/rest/v1/public/versions HTTP/2Host: center-origin.sportident.comAccept: application/json
HTTP response
HTTP/2 200content-type: application/json;charset=UTF-8
{"internalApiVersion":"12.5.0+40fb32c09.20250214170519","publicApiVersion":"0.1.0"}