Skip to main content
GET
/
device
/
hps
/
status
Haptic Stream Status
curl --request GET \
  --url https://api.hapticsconnect.com/device/hps/status \
  --header 'Authorization: Bearer <token>'
{
  "is_playing": true,
  "stream_time": 10,
  "points_left": 2
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

is_playing
boolean

Is stream playing

Example:

true

stream_time
integer

Current stream time in milliseconds

Example:

10

points_left
integer

How many points left to play

Example:

2