Tesla Solar API (Unofficial)
GitHubTeslatimdorr
  • Introduction
  • Local Solar System API
    • Authentication
    • Config
    • Customer
    • Generators
    • Installer
    • Meters
    • Networks
    • Operation
    • Powerwalls
    • Site Info
    • Site Master
    • Solars
    • Status
    • System Status
    • System Update Status
    • Troubleshooting
  • Owner Solar System API
    • Authentication
    • Energy Sites
      • Backup Reserve
      • Backup Time Remaining
      • Calendar History
      • History
      • Live Status
      • Rate Tariffs
      • Site Info
      • Site Name
      • Tariff Rate
      • Telemetry History
    • Powerwalls
      • Data
      • History
      • Status
    • More Coming Soon
Powered by GitBook
On this page
  • GET /api/config
  • Response Body
  • GET /api/config/completed
  • Response Body
  1. Local Solar System API

Config

GET /api/config

Get the vin of the powerwall gateway.

Response Body

{
    "vin": "1234567-00-E--TG123456789A4M"
}

GET /api/config/completed

Get the current configuration of the powerwall gateway, including up time and software version.

Response Body

{
    "din": "1234567-00-E--TG123456789A4M",
    "start_time": "2023-07-27 00:09:48 +0800",
    "up_time_seconds": "72h57m46.637752645s",
    "is_new": false,
    "version": "23.12.10 30f95d0b",
    "git_hash": "098d905fecf529408886b84b5eefae94025f6466",
    "commission_count": 0,
    "device_type": "teg",
    "teg_type": "unknown",
    "sync_type": "v2.1",
    "leader": "",
    "followers": null,
    "cellular_disabled": false
}
PreviousAuthenticationNextCustomer

Last updated 1 year ago