less is more
same outcome, six fewer stepsa real IoT platform
08steps- Create a cloud account.
- Stand up an IoT Core endpoint.
- Register the device, provision certificates.
- Embed and rotate those certificates in firmware.
- Write an ingest rule to route the data.
- Stand up a time-series database.
- Configure a dashboard tool.
- Set up access control for all of the above.
Every one of these is a thing that can expire, drift, or bill you while the sensor sits on a shelf.
postdata
02steps- Send your data to a name you picked.
- Open the chart.
No account, no API key, no SDK, no certificates. If your device can make an HTTP request, it can use PostData.
- Plain HTTP welcome. No TLS handshakes, no embedded root
certificates, no expiring certs bricking your firmware.
http://works on purpose. - No SDK. Even a bare
GETwith query params is enough — an AT-command modem can publish. - Charts included. Every device gets a live-updating page with its history. Share the link.
the whole API
api.postdata.cloudGET with query params does the same thing.
# send a reading (POST some JSON, or just GET with query params)
curl -X POST http://api.postdata.cloud/add/my-sensor -d '{"temp": 21.5, "hum": 60}'
curl "http://api.postdata.cloud/add/my-sensor?temp=21.5&hum=60"
# read the latest value
curl http://api.postdata.cloud/last/my-sensor
# read the history (last 24 hours)
curl http://api.postdata.cloud/past/my-sensor/24
# watch it live
websocat wss://api.postdata.cloud/live/my-sensor
Works over http:// and https:// alike — your
firmware picks. Full docs here.
limits
free, no card, no sign-up- Unlimited devices. Any name that's free is yours.
- Up to 10 metrics per device. Numbers, or short strings (strings keep only their last value — no history).
- One message per 30 seconds per device. Faster posts get a
429with aRetry-Afterheader. - About 3 months of history. Older numeric data ages out.
- Everything is public. Anyone with the name can read it — or write to it.
Need private devices or longer retention? That may come later. For now PostData is a free public utility — a pastebin for sensor data.
Read the docsquestions
What is PostData?
The easiest way to put sensor readings online: send an HTTP request with your numbers, and PostData stores them, charts them, and gives you a simple API and a live page to share. No account needed.
Is this like dweet.io?
Yes — PostData is a spiritual successor to dweet.io, which shut down. Same zero-friction idea, plus history and built-in live charts, running on Cloudflare's edge network.
Why plain HTTP? Isn't HTTPS better?
HTTPS is great — and supported — but TLS is genuinely painful on constrained microcontrollers: certificate stores, expiring roots, slow handshakes, RAM. PostData accepts plain HTTP on purpose so an ESP8266 or a bare AT-command modem can publish without ceremony. Remember everything on PostData is public anyway.
What kind of data can I send?
Any numeric metrics — weather sensors, server stats, plant moisture, whatever — up to 10 metrics per device. Short text values work too (they keep only the last value, no history).
How long do you keep my data?
Numeric history is kept for roughly 92 days. The latest value sticks around for as long as the device keeps posting. If a device goes quiet for a few months it eventually disappears from the explore page.
Can anyone see (or overwrite) my device?
Yes. Devices are public and first-come-first-served — anyone who knows the name can read it, and anyone can post to it. Use a hard-to-guess name (a UUID works nicely) if you want practical obscurity. Claimable private devices may come later.
Who runs this?
PostData is built and run by obiio — a labour of love on Cloudflare Workers, where the whole platform is a single Worker, a database, and one Durable Object per device. Questions? hello@obiio.com