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
mosquitto_pub -h mqtt.bindthings.io -p 1883 \
  -u "YOUR_DEVICE_TOKEN" \
  -t "devices/YOUR_DEVICE_TOKEN/telemetry" \
  -m '{"temperature":25.5}'

# HTTP
curl -X POST https://api.bindthings.io/v1/devices/YOUR_TOKEN/telemetry \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{"temperature":25.5}'

4. View your data

Go to Dashboard → click your device → see real-time charts.