No MQTT setup, no infrastructure, no config files.
Just an Arduino library and an API key.
What you get
Integration
Install the Arduino library on your device. Fetch your data from our API.
// 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..." }
// ]How it works
01
Sign up and get your API key. No credit card required.
02
Add the Paqett Arduino library to your project via Library Manager.
03
Your device auto-provisions and starts sending data immediately.
04
Fetch your data from any app using our REST API.
Pricing
For hobbyists and testing
Higher limits and longer retention for production workloads.
Not ready yet? Follow along.
Just product updates
Get started
Create a free account and start sending data in minutes.