Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 359 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 359 Bytes

PolestarSharp

A small dotnet library to help access the Polestar web api.

Usage

  • Install the nuget package: dotnet add package PolestarSharp
  • Perform a login and data request:
var api = new PolestarApi("email", "password", "vin");
await api.Login();

var battery = await api.GetBatteryInfo();
var odometer = await api.GetOdometerData();