Unofficial async Python client for Polestar vehicle APIs
Project description
unofficial-polestar-api
Unofficial async Python client and Home Assistant integration for Polestar gRPC APIs.
This project aims to bring you as much control as possible over your car. It uses the same APIs as the official mobile app and exposes most functionality (Atleast for the PS4 for now)
Note on 12v battery impact: This library communicates with Polestar's cloud servers, not the car directly. It polls the server every 10 minutes (default, configurable in HA) but it also keeps long lived streams open to the cloud to listen to changes (Battery, Location, Door status etc). It is unclear how much this affects the 12v battery. If you have the opportunity, please monitor your battery voltage and report back.
Supported Cars
This library for now just implements the C3 (Volvo Cars Cloud Connectivity) backend. The Polestar app actually supports four backends — C3, PCCS, Vocmo, and HuanFu — and the server assigns one per vehicle via a remoteControlType field.
The server assigns a backend per vehicle — which cars use which backend is currently unclear, but the Polestar 4 (Which i developed against) - responds to commands through the C3 Backend.
If you use this library (or the HA integration) please report back what works and what doesn't, for your model.
Contributions and testing from owners of other models are welcome and encouraged
| Model | Backend | Verified |
|---|---|---|
| Polestar 4 | C3 | ✅ Mostly working |
| Polestar 2 | ? | Unknown |
| Polestar 3 | ? | Unknown |
| Backend | Status |
|---|---|
| C3 | ✅ Implemented |
| PCCS | ❌ Not implemented |
| Vocmo | ❌ Not implemented |
| HuanFu | ❌ Not implemented |
Not all features are available on all models.
Usage
Home Assistant
Requires HACS installed on your Home Assistant instance.
- In HA, go to HACS → ⋮ (top right) → Custom repositories
- Paste
kildahldev/unofficial-polestar-apiand select Integration - Click Add, then find Unofficial Polestar in HACS and click Download
- Restart Home Assistant
See the HA integration README for setup, entities, services, and dashboard cards.
As a library
from polestar_api import PolestarApi
async with PolestarApi(email="you@example.com", password="...") as api:
vehicles = await api.get_vehicles()
car = vehicles[0]
battery = await car.get_battery()
print(f"{battery.charge_level}% — {battery.range_km} km")
location = await car.get_location()
print(f"Lat {location.coordinate.latitude}, Lon {location.coordinate.longitude}")
Features
- Battery — charge level, range, charging status, power (with real-time streaming)
- Location — last known and last parked position (with real-time streaming)
- Climate — start/stop climatization with target temperature, seat and steering wheel heating
- Climate timers — view and manage scheduled parking climate timers
- Locks — lock, unlock, trunk unlock
- Honk & flash — flash lights or honk+flash
- Windows — open/close all windows
- Exterior — door, window, sunroof, hood, tailgate, and alarm status
- Charging — target SOC, amp limit, charge timers, start/stop immediate charging
- Charge locations — full CRUD for saved locations with per-location amp limits, min SOC, timers, departure times, and smart charging
- Health — service warnings, fluid levels, tyre pressures (kPa), all exterior light warnings, 12V battery
- Availability — vehicle online status with unavailable reason
- Weather — temperature at car location
- OTA — software update info, scheduling, install now, cancel
- Pre-cleaning — air quality status (PM2.5, AQI) and start/stop cabin pre-cleaning
For the full API reference with all methods, models, and enums, see the docs.
Disclaimer
This project is not affiliated with, endorsed by, or in any way officially connected to Polestar, Volvo Cars, or any of their subsidiaries.
This library does not contain any proprietary code, or copyrighted material from Polestar or Volvo. All code is written from scratch by observing the behaviour of the official app.
All API interactions are based on reverse-engineered, undocumented interfaces. These may change or break without notice. Use at your own risk. The authors are not responsible for any consequences of using this software, including but not limited to vehicle malfunctions, warranty implications, or account restrictions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file unofficial_polestar_api-0.2.0b2.tar.gz.
File metadata
- Download URL: unofficial_polestar_api-0.2.0b2.tar.gz
- Upload date:
- Size: 589.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
538fc0c512d3b2d6220f9ed03d26885f00b79bee0fe2a24a487b640a5672270b
|
|
| MD5 |
522bdf7978ba5f89ef82f2cf1c8399bb
|
|
| BLAKE2b-256 |
dd2609436c68f65b1344d6517ed907e390d130cf7e31a893731f09220b8da7ab
|
File details
Details for the file unofficial_polestar_api-0.2.0b2-py3-none-any.whl.
File metadata
- Download URL: unofficial_polestar_api-0.2.0b2-py3-none-any.whl
- Upload date:
- Size: 63.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0621758bd268f6596252ec9c311499db70e080772f53e4a8e74abdfab859bce
|
|
| MD5 |
928536918e0b37d895fcf2c5c40b0dd2
|
|
| BLAKE2b-256 |
f590e0ae408d8e226a86d70d08f198c52ad528485e4df5112037d2c62423f7a9
|