Connect your IoT hardware to the cloud in minutes.

No MQTT setup, no infrastructure, no config files.
Just an Arduino library and an API key.

What you get

Everything from device to dashboard, out of the box.

Connectivity

  • MQTT, HTTP, WebSocket
  • Zero-config provisioning
  • Auto device registration

Storage

  • Built-in time-series DB
  • Queryable immediately
  • Configurable retention

APIs & SDKs

  • REST API for everything
  • Arduino library
  • JavaScript SDK

Dashboard

  • Device management
  • Real-time monitoring
  • Usage analytics

Integration

Two code snippets. That's it.

Install the Arduino library on your device. Fetch your data from our API.

device.cpp
// 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();
}
app.js
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

From zero to data in four steps.

01

Create an account

Sign up and get your API key. No credit card required.

02

Install the library

Add the Paqett Arduino library to your project via Library Manager.

03

Send data

Your device auto-provisions and starts sending data immediately.

04

Query via API

Fetch your data from any app using our REST API.

Pricing

Start free. Upgrade when you need more.

Free

For hobbyists and testing

$0 /month
  • Unlimited Devices
  • 500k Messages / month
  • 7-day retention
Pro
Popular

Higher limits and longer retention for production workloads.

$20 /month
  • Unlimited Devices
  • 10M Messages / month
  • 90-day retention

Not ready yet? Follow along.

Just product updates

Get started

Let's build.

Create a free account and start sending data in minutes.