Skip to main content
GET
/
v1.0.0
/
connections
/
available-vendors
Get available-vendors data for specific partner
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": "https://energy-hub.io/api/vendors/v1/viessmann/logo"
    }
  ],
  "vehicles": [
    {
      "name": "Tesla",
      "id": "TESLA",
      "logoUrl": "https://energy-hub.io/api/vendors/v1/tesla/logo"
    }
  ],
  "chargers": [
    {
      "name": "Easee",
      "id": "EASEE",
      "logoUrl": "https://energy-hub.io/api/vendors/v1/easee/logo"
    }
  ],
  "homePower": [
    {
      "name": "Fronius",
      "id": "FRONIUS",
      "logoUrl": "https://energy-hub.io/api/vendors/v1/fronius/logo"
    }
  ],
  "tariffs": [
    {
      "name": "Tibber",
      "id": "TIBBER",
      "logoUrl": "https://energy-hub.io/api/vendors/v1/tibber/logo"
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

API key used for authorization and authentication.

Response

Successful operation

hvac
object[]

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

Example:
[
{
"name": "Viessmann",
"id": "VIESSMANN",
"logoUrl": "https://energy-hub.io/api/vendors/v1/viessmann/logo"
}
]
vehicles
object[]

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

Example:
[
{
"name": "Tesla",
"id": "TESLA",
"logoUrl": "https://energy-hub.io/api/vendors/v1/tesla/logo"
}
]
chargers
object[]

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

Example:
[
{
"name": "Easee",
"id": "EASEE",
"logoUrl": "https://energy-hub.io/api/vendors/v1/easee/logo"
}
]
homePower
object[]

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

Example:
[
{
"name": "Fronius",
"id": "FRONIUS",
"logoUrl": "https://energy-hub.io/api/vendors/v1/fronius/logo"
}
]
tariffs
object[]

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

Example:
[
{
"name": "Tibber",
"id": "TIBBER",
"logoUrl": "https://energy-hub.io/api/vendors/v1/tibber/logo"
}
]