DEV Community

Tyler
Tyler

Posted on

Your devices lie. Here’s the 47ms fix.

Your devices lie. Here's the 47ms fix.

IoT fleets. Webhook streams. Edge devices.

Your dashboard says "online". The job runs. It fails silently.

SignalCend POSTs conflicting events → returns authoritative state. 47ms. No polling.

Live Demo (works now)

curl -X POST https://www.signalcend.com/resolve \
  -H "Authorization: Bearer demo" \
  -H "Content-Type: application/json" \
  -d '{
    "events": [
      {"device_id": "truck_42", "state": "loading", "ts": 1699000000},



**Response:**
Enter fullscreen mode Exit fullscreen mode


json
{
"resolution_id": "res_xyz123",
"resolved_state": {
"truck_42": "dispatched"
},
"billed": false

Dupes gone. Truth returned. 47ms.

Get Production API Key
1K Free resolutions. No card needed

Ship now
}
{"device_id": "truck_42", "state": "dispatched", "ts": 1699000001},
{"device_id": "truck_42", "state": "dispatched", "ts": 1699000001}
]
}'

Top comments (0)