cURL
curl --request GET \ --url https://api.example.com/devices
{ "success": true, "total": 123, "data": [ { "id": "<string>", "name": "<string>", "ip": "<string>", "port": 123, "created_at": "<string>" } ] }
Retrieve a list of all registered ZKTeco biometric devices
Show Device Object
curl -X GET https://your-server.com/devices
{ "success": true, "total": 2, "data": [ { "id": "principal", "name": "Entrada Principal", "ip": "192.168.1.205", "port": 4370, "created_at": "2026-03-05 10:30:00" }, { "id": "bodega", "name": "Bodega Principal", "ip": "192.168.1.207", "port": 4370, "created_at": "2026-03-06 14:20:00" } ] }