WL is a lightweight telemetry pipeline. Stream product and device events to a single endpoint and get them delivered, batched, and durable — with sub-100 ms acks.
POST batches to /v1/events. Long-poll GET for delivery. No SDK lock-in.
At-least-once delivery with idempotency keys and automatic retries.
Ingest close to the user; we handle backpressure and buffering.
curl -X POST https://wl.rustgrove.com/v1/events \
-H "content-type: application/octet-stream" \
--data-binary @batch.bin
Responses stream back over a persistent channel. See the docs for batching and idempotency.