Retrieve details for a single, specific home battery make.
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/home_battery_makes/{home_battery_make_id}
- Live API for both production and sandbox requests.https://api.ev.energy/v2/home_battery_makes/{home_battery_make_id}
- Staging server for internal testing only.https://api-staging.ev.energy/v2/home_battery_makes/{home_battery_make_id}
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/home_battery_makes/{home_battery_make_id}' \
-H 'Accept-Language: string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-Version: 2'Return a single home battery make.
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
The number of requests remaining until this client's rate limit is reached.
Unique identifier for the given Home Battery Make.
A url for an image of the make's logo.
A pre-constructed link to initiate onboarding for a home battery of this make. If it is null, then it cannot be onboarded with make alone. You should filter the list of home battery models by this make and then have the user select their model.
Your client_id and the user's user_id are automatically included based on your authentication token. If you are using client credentials authentication, the user ID will not be automatically included unless you set the EvEnergy-User header on your request.
{ "id": "bmakK7XDPL63NNBDQ5DPB6K3TP87JA", "url": "https://api.ev.energy/v2/home_battery_makes/bmakK7XDPL63NNBDQ5DPB6K3TP87JA", "name": "Rivendell", "icon": null, "onboarding_url": "https://api.ev.energy/v2/home_battery_onboarding?make_id=bmakK7XDPL63NNBDQ5DPB6K3TP87JA&client_id=clntK7XDPL63NNBDQ5DPB6K3TP87JA", "models": "https://api.ev.energy/v2/home_battery_models?make_id=bmakK7XDPL63NNBDQ5DPB6K3TP87JA" }