--- title: "RESTful Binary Sensor" description: "Instructions on how to integrate REST binary sensors into Home Assistant." logo: restful.png ha_category: - Binary Sensor ha_release: "0.10" ha_iot_class: Local Polling --- The `rest` binary sensor platform is consuming a given endpoint which is exposed by a [RESTful API](https://en.wikipedia.org/wiki/Representational_state_transfer) of a device, an application, or a web service. The binary sensor has support for GET and POST requests. The JSON messages can contain different values like `1`, `"1"`, `TRUE`, `true`, `on`, or `open`. If the value is nested then use a [template](/docs/configuration/templating/#processing-incoming-data). ```json { "name": "Binary sensor", "state": { "open": "true", "timestamp": "2016-06-20 15:42:52.926733" } } ``` ## Configuration To enable this sensor, add the following lines to your `configuration.yaml` file for a GET request: ```yaml # Example configuration.yaml entry binary_sensor: - platform: rest resource: http://IP_ADDRESS/ENDPOINT ``` or for a POST request: ```yaml # Example configuration.yaml entry binary_sensor: - platform: rest resource: http://IP_ADDRESS/ENDPOINT method: POST ``` {% configuration %} resource: description: The resource or endpoint that contains the value. required: true type: string default: string method: description: The method of the request. required: false type: string default: GET name: description: Name of the REST binary sensor. required: false type: string default: REST Binary Sensor device_class: description: Sets the [class of the device](/integrations/binary_sensor/), changing the device state and icon that is displayed on the frontend. required: false type: string value_template: description: > Defines a [template](/docs/configuration/templating/#processing-incoming-data) to extract the value. required: false type: template payload: description: The payload to send with a POST request. Usually formed as a dictionary. required: false type: string verify_ssl: description: Verify the certification of the endpoint. required: false type: boolean default: true timeout: description: Defines max time to wait data from the endpoint. required: false type: integer default: 10 authentication: description: "Type of the HTTP authentication. `basic` or `digest`." required: false type: string username: description: The username for accessing the REST endpoint. required: false type: string password: description: The password for accessing the REST endpoint. required: false type: string headers: description: The headers for the requests. required: false type: [list, string] {% endconfiguration %}