RevKeen Docs
Api reference

Retrieve a terminal device

Get a terminal device by ID, including its current status and heartbeat information.


Related endpoints

  • GET /terminal-devices — List terminal devices

Common errors

  • 404 resource_missing — the referenced resource does not exist or is not visible to your key.
GET
/terminal-devices/{id}
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Path Parameters

id*string

Terminal device ID

Formatuuid

Response Body

application/json

application/json

curl "https://api.revkeen.com/v2/terminal-devices/00000000-0000-0000-0000-000000000000" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "data": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "device_name": "string",
    "terminal_serial": "string",
    "terminal_ip": "string",
    "platform": "macos",
    "status": "online",
    "terminal_paired": true,
    "terminal_reachable": true,
    "app_version": "string",
    "last_heartbeat_at": "string"
  }
}
{
  "error": "string",
  "message": "string"
}