Introduction
Capabilities
Vehicles
- Connect vehicle
- Vehicle
- Vehicle for user
Tariffs
- Connect tariff
- Tariff
- Tariff for user
HVACs
- Connect HVAC
- HVAC
- HVAC for user
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
Capabilities
All available vendors
Returns the list of vendors which are currently be supported by vendor category. This list is extended when new vendors are added to the Energy Hub.
GET
/
v1.0.0
/
connections
/
available-vendors
curl --request GET \
--url https://api.energy-hub.io/v1.0.0/connections/available-vendors \
--header 'X-API-KEY: <api-key>'
{
"hvac": [
{
"name": "Viessmann",
"id": "VIESSMANN",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"vehicles": [
{
"name": "Tesla",
"id": "TESLA",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"chargers": [
{
"name": "Easee",
"id": "EASEE",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"homePower": [
{
"name": "Fronius",
"id": "FRONIUS",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"tariffs": [
{
"name": "Tibber",
"id": "TIBBER",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
]
}
Authorizations
API key used for authorization and authentication.
Response
200
application/json
Successful operation
The response is of type object
.
curl --request GET \
--url https://api.energy-hub.io/v1.0.0/connections/available-vendors \
--header 'X-API-KEY: <api-key>'
{
"hvac": [
{
"name": "Viessmann",
"id": "VIESSMANN",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"vehicles": [
{
"name": "Tesla",
"id": "TESLA",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"chargers": [
{
"name": "Easee",
"id": "EASEE",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"homePower": [
{
"name": "Fronius",
"id": "FRONIUS",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
],
"tariffs": [
{
"name": "Tibber",
"id": "TIBBER",
"logoUrl": {
"light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
"dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.