Store and share sensor data in less than 15 seconds.
POST /api/feed/update
{
"token":"YOUR_TOKEN",
"values":
{
"temperature":23.5,
"humidity":61
}
}
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
}
}'