Introduction
Capabilities
Vehicles
- Connect vehicle
- Vehicle
- Vehicle for user
Tariffs
- Connect tariff
- Tariff
- Tariff for user
HVACs
Chargers
- Connect Charger
- Charger
- Charger for User
Home Power Devices
- Connect Home Power Device
- PV-Inverter
- PV-Inverter for user
- Battery
- Battery for user
- Meter
- Meter for user
HVAC
HVAC data
Returns general data of a single HVAC.
GET
/
v1.0.0
/
hvacs
/
{hvacId}
curl --request GET \
--url https://api.energy-hub.io/v1.0.0/hvacs/{hvacId} \
--header 'X-API-KEY: <api-key>'
{
"lastUpdated": "2023-11-07T05:31:56Z",
"powerState": {
"lastUpdated": "2023-11-07T05:31:56Z",
"powerConsumption": 123
},
"locationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"isOnline": true,
"id": "6eb5497d-c6bb-4290-84ef-4409fe9501f1",
"climateState": {
"mode": "HEAT",
"lastUpdated": "2023-11-07T05:31:56Z",
"temperatureTargets": [
{
"mode": "HEAT",
"temperature": 18.1
}
],
"isActive": true,
"temperatureCurrent": 20.3,
"temperatureOutside": 12.1
},
"userId": "896f9d5a-b618-48a2-98ae-957059bf1bc9",
"staticData": {
"lastUpdated": "2023-11-07T05:31:56Z",
"vendor": "VIESSMANN",
"name": "Viessmann Vitotronic 200",
"model": "Vitotronic 200",
"type": "AC",
"capableModes": [
"HEAT"
],
"room": "Living room"
}
}
Authorizations
API key used for authorization and authentication.
Path Parameters
HVAC ID
Response
200
application/json
Successful operation
Object of HVAC response.
curl --request GET \
--url https://api.energy-hub.io/v1.0.0/hvacs/{hvacId} \
--header 'X-API-KEY: <api-key>'
{
"lastUpdated": "2023-11-07T05:31:56Z",
"powerState": {
"lastUpdated": "2023-11-07T05:31:56Z",
"powerConsumption": 123
},
"locationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"isOnline": true,
"id": "6eb5497d-c6bb-4290-84ef-4409fe9501f1",
"climateState": {
"mode": "HEAT",
"lastUpdated": "2023-11-07T05:31:56Z",
"temperatureTargets": [
{
"mode": "HEAT",
"temperature": 18.1
}
],
"isActive": true,
"temperatureCurrent": 20.3,
"temperatureOutside": 12.1
},
"userId": "896f9d5a-b618-48a2-98ae-957059bf1bc9",
"staticData": {
"lastUpdated": "2023-11-07T05:31:56Z",
"vendor": "VIESSMANN",
"name": "Viessmann Vitotronic 200",
"model": "Vitotronic 200",
"type": "AC",
"capableModes": [
"HEAT"
],
"room": "Living room"
}
}
Assistant
Responses are generated using AI and may contain mistakes.