DGT IoT Feed

Store and share sensor data in less than 15 seconds.





ESP32 Example

POST /api/feed/update
{
  "token":"YOUR_TOKEN",
  "values":
  {
    "temperature":23.5,
    "humidity":61
  }
}

cURL Example

curl -X POST http://localhost:3000/api/feed/update -H "Content-Type: application/json" -d '{ 
  "token":"YOUR_TOKEN",
  "device":"livingroom",
  "values":{
    "temperature":22.1
  }
}'
or
curl -X POST http://localhost:3000/api/feed/update -H "Content-Type: application/json" -d '{ 
  "token":"YOUR_TOKEN",
  "device":"livingroom",
  "values":{
    "temperature":22.1,
    "humidity":61.5
  }
}'