Blinds
(interior and exterior)
Modernity, Comfort and Insulation
Motorize and connect your external solar screens and venetian blinds.
Modern houses and buildings come more and more with large bay windows which are the main source of natural light, heat or cold in the home.
By equipping your windows with external solar screens and venetian blinds, you improve your visual and thermal comfort and help save energy.
Brighten your home interior with connected shades and venetian blinds
Use your smartphone to make the most of natural light and maximize your comfort and the well-being of your family.


Control Somfy Blinds
(interior and exterior)
Our Open APIs give access to blinds control on all key end user control actions.
To control Somfy radio motors through our APIs, a Somfy box (TaHoma or Connexoon) with Somfy protocols will be required.
It will enable the end user to create his account with Somfy and use the embedded protocol to control our motors (initial pairing and then control).
- TaHoma for io-homecontrol or RTS motors
- Connexoon io for io motors
- Connexoon RTS for RTS motors
Protocols Compatibilities
Somfy offers rolling shutter motors under two radio protocols.

io-homecontrol®
Smart and secured radio technology
io-homecontrol is a secured bi-directional radio protocol allowing equipment to give feedback on their status and fine position control. Ideal for Smart Home and remote control. It is also secured with an encryption key dedicated to each installation. io-homecontrol is integrated a multi-brand wireless technology, used by major players (Velux, CIAT, Atlantic, Secuyou and Window Master) and a reference technology for professionals.

RTS
Somfy's wireless technology.
RTS is Somfy's historic radio protocol and has more than 10 million installed equipment today.
Code Examples
Open an interior or exterior blind
curl -X POST "https://api.somfy.com/api/v1/device/{deviceId}/exec" \
-H "Authorization: Bearer {access_token}" \
-H "Content-Type: application/json" \
-d "{\"name\":\"open\",\"parameters\":[]}"
Deploy an interior or exterior blind to 30%
curl -X POST "https://api.somfy.com/api/v1/device/{deviceId}/exec" \
-H "Authorization: Bearer {access_token}" \
-H "Content-Type: application/json" \
-d "{\"name\":\"position\",\"parameters\":[{\"name\":\"position\",\"value\":30}]}"
Set the relative orientation of the slates of a venetian blind to 60%
curl -X POST "https://api.somfy.com/api/v1/device/{deviceId}/exec" \
-H "Authorization: Bearer {access_token}" \
-H "Content-Type: application/json" \
-d "{\"name\":\"rotation\",\"parameters\":[{\"name\":\"orientation\",\"value\":60}]}"
Stop an interior or exterior blind
curl -X POST "https://api.somfy.com/api/v1/device/{deviceId}/exec" \
-H "Authorization: Bearer {access_token}" \
-H "Content-Type: application/json" \
-d "{\"name\":\"stop\",\"parameters\":[]}"
Identify an interior or exterior blind
curl -X POST "https://api.somfy.com/api/v1/device/{deviceId}/exec" \
-H "Authorization: Bearer {access_token}" \
-H "Content-Type: application/json" \
-d "{\"name\":\"identify\",\"parameters\":[]}"