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",
      "required": [],
      "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",
      "required": [],
      "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",
      "required": [],
      "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",
      "required": [],
      "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",
      "required": [],
      "logoUrl": {
        "light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
        "dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
      }
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

API key used for authorization and authentication.

Response

200 - application/json
Successful operation
hvac
object[]

List of HVAC vendors which can be connected to the Energy Hub.

List of home power vendors which can be connected to the Energy Hub.

Example:
[
  {
    "name": "Viessmann",
    "id": "VIESSMANN",
    "required": [],
    "logoUrl": {
      "light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
      "dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
    }
  }
]
vehicles
object[]

List of vehicle vendors which can be connected to the Energy Hub.

List of home power vendors which can be connected to the Energy Hub.

Example:
[
  {
    "name": "Tesla",
    "id": "TESLA",
    "required": [],
    "logoUrl": {
      "light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
      "dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
    }
  }
]
chargers
object[]

List of charger vendors which can be connected to the Energy Hub.

List of home power vendors which can be connected to the Energy Hub.

Example:
[
  {
    "name": "Easee",
    "id": "EASEE",
    "required": [],
    "logoUrl": {
      "light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
      "dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
    }
  }
]
homePower
object[]

List of home power vendors which can be connected to the Energy Hub.

List of home power vendors which can be connected to the Energy Hub.

Example:
[
  {
    "name": "Fronius",
    "id": "FRONIUS",
    "required": [],
    "logoUrl": {
      "light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
      "dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
    }
  }
]
tariffs
object[]

List of tariff vendors which can be connected to the Energy Hub.

List of home power vendors which can be connected to the Energy Hub.

Example:
[
  {
    "name": "Tibber",
    "id": "TIBBER",
    "required": [],
    "logoUrl": {
      "light": "https://static.energy-hub.io/available-vendors/light/Logo.png",
      "dark": "https://static.energy-hub.io/available-vendors/dark/Logo.png"
    }
  }
]