Authorizations
API key used for authorization and authentication.
Response
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"
}
}
]
}
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.
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"
}
}
]
}
API key used for authorization and authentication.
Successful operation
The response is of type object
.