Documentation

Welcome to Cloud-Nest! Our IoT dashboard allows you to store, view, and manage data from your IoT devices.

This documentation explains how to use our REST API to send your device data to Cloud-Nest.

Getting Started

1

Sign Up

Register on Cloud-Nest to get your API key.

2

Add Devices

Use the dashboard to add your devices.

3

Send Data

Use the API to send your device data.

Base URL

https://cloud-nest.in/api

Endpoint - Add Data

MethodGET
Path/device/history

Full Request URL

https://cloud-nest.in/api/device/history?apiKey=YOUR_API_KEY&{fieldName1}={data1}&{fieldNameN}={dataN}

Query Parameters

ParameterDescription
apiKeyYour unique API key.
fieldName 1data 1 ( number )
fieldName ndata n ( number )

Example Request

GET https://cloud-nest.in/api/device/history?apiKey=YOUR_API_KEY&fieldName1=100&fieldName2=200

Example Response

{ "message": "Data added successfully", "status": 200 }

Error Response

If there's an error, you'll receive a JSON response with details.

{
  "message": "Invalid API key",
  "status": 401
}