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

Endpoint: /device/history

Method: GET

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

Query Parameters:

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

Example Request:

https://cloud-nest.in/api/device/history?apiKey=YOUR_API_KEY&felidName1=100&felidName2=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 }