Quick Start
Connect your first device in under 5 minutes.
1. Create an account
Sign up at bindthings.com/register
2. Add a device
Go to Dashboard → Add Device. You will receive a unique token.
3. Send your first data
Use MQTT or HTTP to send telemetry:
# MQTT (TLS)
mosquitto_pub -h mqtt.bindthings.io -p 8883 \
--capath /etc/ssl/certs \
-u "YOUR_DEVICE_TOKEN" \
-P "YOUR_DEVICE_TOKEN" \
-t "devices/YOUR_DEVICE_TOKEN/telemetry" \
-m '{"temperature":25.5}'
# HTTP
curl -X POST https://api.bindthings.io/api/v1/devices/telemetry \
-H "Authorization: Bearer YOUR_DEVICE_TOKEN" \
-H "Content-Type: application/json" \
-d '{"temperature":25.5}'4. View your data
Go to Dashboard → click your device → see real-time charts.