The Bolt Cloud API provides an interface for communication between the Bolt devices and any 3rd party system e.g. mobile application, web server, python programs etc. The API contains very intuitive control, monitoring, communication and utility functions ...
This is a simple syntax for making an API request. In this request, the first parameter is the API key and the second parameter is the command that we want to execute and the last parameter is ID of Bolt device. The general syntax for the API request is: ...
In this section, you will find the GPIO commands that you can execute via the remote API. Click here to find out how to write digital output. Click here to find out how to read digital input. Click here to find out how to rea ...
In this section, you will find the UART commands along with the parameters you can pass. serialBegin serialWrite serialRead serialWR
In this section, you will find the Bolt utility commands along with the parameters you can pass. version restart isOnline getDevices deployConfig
Python3 Python code for Digital Write API request Python import requests url = "https://cloud.boltiot.com/remote/1cdfabea-306f-413f-a84b-552938aa8c5d/digitalWrite" querystring = {"pin":"2","state":"HIGH","deviceName":"BOLT8795377"} ...
Our API service is totally free of cost. But to make sure every user gets a fair share of usage and to keep our systems working in optimum way possible, we have implemented rate limiting on our API system.Rate limiting allows a specific number of requests ...