State And Settings
An energy site is a home installation of batteries or solar panels (formerly from SolarCity, which was acquired by Tesla).
Work In Progress
Site Data
GET
https://owner-api.teslamotors.com/api/1/energy_sites/:site_id/live_status
Shows a real-time view of the power output of the site. The Tesla Android app polls this method every 3 seconds to show the kW output.
Path Parameters
:site_id
integer
The {energy_site_id}
number from the products list
Headers
Authorization
string
Bearer {access_token}
from authentication
Site Configuration
GET
https://owner-api.teslamotors.com/api/1/energy_sites/:site_id/site_info
Get installation and configuration details about the site.
The site_name
field value can be changed using the Site Name command.
Path Parameters
:site_id
integer
The {energy_site_id}
number from the products list
Headers
Authorization
string
Bearer {access_token}
from authentication
Historical Calendar Data
GET
https://owner-api.teslamotors.com/api/1/energy_sites/:site_id/calendar_history
Generate a report for solar, grid, and battery data up to a given date, aligned with the start of various calendar periods. Reports for certain periods will return subtotals for smaller constituent periods. This method is used to render bar and line graphs in the Tesla Android app.
Path Parameters
:site_id
integer
The {energy_site_id}
number from the products list
Query Parameters
end_date
string
ISO 8601 datetime, e.g. 2019-12-23T17:39:18.546Z
. The response report interval ends on this datetime and starts at the beginning of the given period
at 1:00 AM. Defaults to the current time.
time_zone
string
IANA/Olsen time zone identifier, e.g. America/New_York
. Seems to have no effect on response data.
period
string
Amount of time to include in report. One of day
, week
, month
, year
, and lifetime
. When kind
is power
, this parameter is ignored, is not required, and is always treated as day
.
kind
string
Type of report to generate. One of power
, energy
, and self_consumption
.
Headers
Authorization
string
Bearer {access_token}
from authentication
Historical Data
GET
https://owner-api.teslamotors.com/api/1/energy_sites/:site_id/history
May be a deprecated method. Seems to be similar to the Historical Calendar Data method above, except these responses are missing the time_zone_offset
field.
Path Parameters
:site_id
integer
The {energy_site_id}
number from the products list
Headers
Authorization
string
Bearer {access_token}
from authentication
Site Summary
GET
https://owner-api.teslamotors.com/api/1/energy_sites/:site_id/status
Warning: This method seems to always return 404 Not Found
. It may have been removed from the API.
Path Parameters
:site_id
integer
The {energy_site_id}
number from the products list
Headers
Authorization
string
Bearer {access_token}
from authentication
Last updated
Was this helpful?