Flash a Microcontroller. Send data. Query it via API.
If it takes more than 10 minutes, we've failed.
A few lines on the device. One query on the server.
// Install: Arduino Library Manager -> "Paqett"
#include <Paqett.h>
PaqettDevice device;
PaqettWiFi wifi;
void setup() {
wifi.connect("YourWiFiSSID", "YourWiFiPassword");
device.setNetwork(&wifi);
device.begin(); // Auto-provisions and connects!
}
void loop() {
device.loop();
// Send data - it's that simple!
device.createMessage("temperature", 23.5)
.add("humidity", 65.2)
.publish();
}const response = await fetch(
'https://api.paqett.com/v1/data?key=temperature&last=24h',
{ headers: { 'Authorization': 'Bearer YOUR_API_KEY' } }
);
const data = await response.json();
console.log(data);
// [
// { value: 21.5, ts: "2023-10-01T..." },
// { value: 22.1, ts: "2023-10-01T..." }
// ]If you want more, subscribe
Auto-provisioning on first boot
MQTT/HTTP/WS abstracted away
Hot storage included by default
Query your data instantly
Online/offline status & last seen
View raw data and devices
Start for free. Pay to support what's next.
For hobbyists and testing
Support what's next. Help us validate product-market fit.
We're building more features, but only if there's real demand. This tier exists to validate interest + you get higher limits, that's it.
Don't want to spend money but follow along?
Just product updates
© 2026 Paqett