TraceServer
Device Data Dashboard
Live
Total Records0in-memory store (max 500)
Unique Devicesnone yet
Last Receivedno data yet
API Endpointhttp://localhost:3000/api/dataPOST · JSON
📡 API Reference
POST
/api/data
Send JSON data from your mobile device. Body: deviceId (optional), deviceName (optional), data (object with your key-value pairs).
GET
/api/data?limit=50&stats=true
Retrieve stored records. Query params: limit (default 50, max 500), stats=true to include aggregate stats.
DEL
/api/data/clear
Delete all stored records.
curl -X POST http://localhost:3000/api/data \
  -H "Content-Type: application/json" \
  -d '{
    "deviceId":   "my-device-001",
    "deviceName": "My iPhone",
    "data": {
      "temperature": 36.6,
      "battery":     82,
      "location":    "12.9716, 77.5946"
    }
  }'

📊 Live Data Feed

Auto-refreshes every 5 seconds
📭
No data received yet
Send a POST request to /api/data from your mobile device to see records appear here.