Skip to content
Max Prokhorov edited this page Dec 30, 2020 · 11 revisions

REST API

The ESPurna firmware exposes a REST API you can use to query or change relay statuses and query sensor values.

Security

The REST API is disabled by default. You will have to enable it first from the web interface in the "Security" tab. You will also have to take note of the API KEY you must use in every query to the REST API. This key is autogenerated or you can generate a new one click the "Generate" button.

restapi-config.jpeg

Testing the API

To test the API you can use a normal browser (for GET requests), a GUI tool like Postman for Google Chrome or cURL from the terminal in Linux and MacOS machines.

cURL is used in the examples for simplicity, I hope everyone will get the idea.

API entry points

The entry points are the URLs you can get or send values from/to. The represent physical entities (like relays) or magnitudes (like "temperature"). The available entry points will depend on the sensors you have enabled in your device.

To know what API entry points you can use there is a special URL that summarizes them:

$ curl -H "Api-Key: C62ED7BE7593B658" http://192.168.1.108/api/list
/api/relay/+
/api/temperature
/api/humidity

You can also enter this URL in the web browser (http://192.168.1.108/apis?apikey=C62ED7BE7593B658), but it is not recommended.

Some APIs support JSON output when "Accept" header is set to "application/json". For instance:

$ curl -H "Api-Key: C62ED7BE7593B658" -H "Accept: application/json" http://192.168.1.108/api/relay
{"relayStatus":[0,0]}

Relay management

You can query or set the relay status using the REST API. To query the relay status you have to issue a GET request like the previous one to the relay entry point:

$ curl -H "Api-Key: C62ED7BE7593B658" http://192.168.1.108/api/relay/0
1

To change the relay status you have to send a PUT request with the new value in the "value" parameter. This new value can be 0 to turn it off, 1 to turn it on or 2 to toggle it:

$ curl -X PUT -H "Api-Key: C62ED7BE7593B658" http://192.168.1.108/api/relay/0 --data "value=toggle"
0
$ curl -X PUT -H "Api-Key: C62ED7BE7593B658" http://192.168.1.108/api/relay/0 --data "value=toggle"
1

You can also change the relay status via a GET request, when "Restful API" setting is OFF:

$ curl -H "Api-Key: C62ED7BE7593B658" "http://192.168.1.108/api/relay/0?value=2"
0
$ curl "http://192.168.1.108/api/relay/0?apikey=C62ED7BE7593B658&value=2"
1

Color changing

From version 1.7.0 if your device has an RGB light source you can control the color via API too (both GET and PUT, "%23" is the URL encoded value for '#'):

$ curl -X PUT -H "Api-Key: C62ED7BE7593B658" http://192.168.1.108/api/rgb --data "value=%23FFEFFE"
#FFEFFE
$ curl "http://192.168.1.108/api/rgb?apikey=C62ED7BE7593B658&value=%23FF0000"
#FF0000

You can also change the color using the hsv, kelvin and mired entry points.

Channel setting

You can set individual channel values using the channel entry point:

$ curl -X PUT -H "Api-Key: C62ED7BE7593B658" http://192.168.1.108/api/channel/0 --data "value=128"
#FF0000
$ curl -H "Api-Key: C62ED7BE7593B658" "http://192.168.1.108/api/channel/0?value=128"
128

Sensor values

Sensor values can be queried in the same fashion using GET requests:

$ curl -H "Api-Key: C62ED7BE7593B658" http://192.168.1.108/api/temperature
21.5

Examples using Postman

Postman is an Desktop and Google Chrome App to test and develop APIs. You can download it and install it from the App Store in your Chrome browser or for your desktop from https://www.getpostman.com. Here are a couple of screenshot of Postman querying the ESPurna API.

restapi-postman-get.jpg

restapi-postman-put.jpg

Examples using PowerShell

PowerShell is a scripting language used on windows. This example used the REST API to first query the Sonoff S20 relais, and then toggle it.

#change this to your devices IP
$base = 'http://192.168.4.100/'
#change this to you API key as generated in the web interface
$key= 'apikey=F7DDDA33EEAFGB'
# depending on your device you can add more relays or sensors
$request = 'api/relay/0'
$headers = New-Object 'System.Collections.Generic.Dictionary[[string],[string]]'

# build the string we will use to query the device
$uri = $base+$request+ '?' + $key
'current value:'
# read the switch
$result = Invoke-RestMethod -Headers $headers -uri $uri -Method Get
$result
'toggled:'
$uri = $base+$request+ '?' + $key + '&value=2'
#toggle the switch
$result = Invoke-RestMethod -Headers $headers -uri $uri -Method get
$result

Home
Change log

Getting started

Supported hardware and options

Configuration

Integrations

Network

Developers

More around ESPurna

Clone this wiki locally