IoT for Vibe Coders

Ship hardware projects like
you ship web apps

Flash a Microcontroller. Send data. Query it via API.
If it takes more than 10 minutes, we've failed.

An API Key and no config

A few lines on the device. One query on the server.

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..." }
// ]

What Works Today

If you want more, subscribe

Flash & Provision

Auto-provisioning on first boot

Send Telemetry

MQTT/HTTP/WS abstracted away

Time-Series

Hot storage included by default

REST API

Query your data instantly

Device Registry

Online/offline status & last seen

Basic Dashboard

View raw data and devices

Pricing

Start for free. Pay to support what's next.

Free Tier

For hobbyists and testing

$0 /month
  • Unlimited Devices
  • 500k Messages / month
  • 7-day retention
Want More Features?
$20/mo

Support what's next. Help us validate product-market fit.

$20 /month

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.

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

Don't want to spend money but follow along?

Just product updates

© 2026 Paqett