A small dotnet library to help access the Polestar web api.
- 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();