A CarConnectivity connector that reads vehicle
data from the VW Group EU Data Act portal (eu-data-act.drivesomethinggreater.com). It supports
every VW Group brand on the portal (Volkswagen, Audi, Škoda, SEAT, Cupra, Bentley) and models pure
EVs, combustion and PHEV drivetrains.
Volkswagen has blocked WeConnect API access for all 3rd-party integrations, which breaks the
carconnectivity-connector-volkswagen connector. For personal use, the EU Data Act portal is the
remaining access path. Its data has important limitations:
- Read-only. No commands are possible (lock/unlock, climatization, charge start/stop, etc.).
- ~15-minute cadence. Data is delivered as batch datasets roughly every 15 minutes, not live.
- Partial data. Some WeConnect data points are absent (e.g. GPS location; estimated range is often missing). Only the data points present in a dataset are exposed.
This connector authenticates against the portal (OIDC login, reusing the proven flow from the homeassistant-vw-eu-data-act integration), downloads the newest dataset per vehicle, and maps the available data points onto native CarConnectivity attributes as read-only values.
Before adding the connector, you must enable a continuous 15-minute data request for your vehicle on the EU Data Act portal. The connector only downloads the datasets the portal generates — it cannot create the data request for you, and without an active request there will be nothing to fetch.
- Open https://eu-data-act.drivesomethinggreater.com/ and log in with your Volkswagen ID (the same email/password you'll use in the connector config).
- Go to Data clusters → Vehicle overview.
- Connect your car to the site if it isn't already listed (follow the on-screen pairing/consent steps for your VIN).
- Click Get customised data for the vehicle and follow the instructions to configure a continuous data request with a 15-minute frequency.
- Wait until the portal starts producing datasets (you'll see ZIP files appear in the vehicle's data delivery list, roughly every 15 minutes). The first file can take a little while to show up.
Once datasets are being generated, continue with the installation below.
The connector polls at most every 15 minutes because that is how often the portal publishes new data — a shorter interval cannot produce fresher values.
pip install -e .Requires carconnectivity>=0.11.9.
Add a connector of type vw_eu_data_act to your carconnectivity.json:
{
"carConnectivity": {
"connectors": [
{
"type": "vw_eu_data_act",
"config": {
"username": "you@example.com",
"password": "your-portal-password",
"interval": 900,
"country": "si",
"language": "sl",
"brand": "VOLKSWAGEN_PASSENGER_CARS"
}
}
]
}
}| Key | Default | Description |
|---|---|---|
username / password |
— | VW ID credentials. May instead be provided in .netrc under machine vw_eu_data_act. |
netrc |
~/.netrc |
Path to a netrc file (used when username/password are omitted). |
interval |
900 |
Base poll interval (seconds, min 60). The connector also auto-schedules ~15 min after the newest dataset. |
country / language / brand |
si / sl / VOLKSWAGEN_PASSENGER_CARS |
OIDC state components. Each brand authenticates with its own OIDC client_id — set brand to match your car (see below). |
vin |
— | Optional. Restrict to a single VIN; otherwise all consented vehicles are used. |
hide_vins |
[] |
VINs to exclude. |
Set brand to the canonical key (or a friendly alias) for your vehicle. Matching is
case-insensitive; an unknown value falls back to Volkswagen Passenger Cars.
brand key |
Aliases | Manufacturer |
|---|---|---|
VOLKSWAGEN_PASSENGER_CARS |
VW, VOLKSWAGEN |
Volkswagen |
VOLKSWAGEN_COMMERCIAL_VEHICLES |
VWN, VW_COMMERCIAL |
Volkswagen Commercial Vehicles |
AUDI |
Audi | |
SKODA |
ŠKODA |
Škoda |
SEAT |
SEAT | |
CUPRA |
Cupra | |
BENTLEY |
Bentley |
The connector detects the drivetrain from the data points present (battery vs fuel) and promotes the
vehicle to electric, combustion or hybrid accordingly, following the same conventions as the official
carconnectivity-connector-seatcupra:
- Pure EV — a single
primary(electric) drive. - PHEV — the
primarydrive is the combustion engine and thesecondarydrive is the electric one (so the petrol range is no longer assigned to the electric drive).
Both the dotted (nested) and flat portal field names are accepted. Drive slots follow the drivetrain
(see Drivetrains above): on a PHEV the electric drive is the secondary slot and combustion is
primary; on a pure EV the electric drive is the single primary slot.
A dataset is a merge, not a moment. One portal delivery flattens several vehicle reports, each
captured at its own time, into a single unordered array. The official data dictionary defines a
capture timestamp per report group, but the flat export drops the grouping: nothing ties a field to
the report it came from. Two fields of the same dataset must therefore not be read as simultaneous
(spreads from minutes to several hours between report groups have been observed on real exports).
The failure mode is quiet: a charging state captured before a scheduled charge can sit right next to
a charge power captured during it, and both are correct. The two payload formats age differently:
flat-format vehicles stamp (nearly) every entry with its own timestampUtc ("when the car last
reported this field"), while dotted-format (MEB) exports carry no timestampUtc at all, only
report-level car_captured_time entries that nothing references.
A new delivery is not a new measurement. The vehicle reports on events (ignition, charging
steps, warnings) and goes quiet when parked; the portal publishes on its own cadence regardless, so
a delivery can carry values captured many hours earlier. connector.last_update is the delivery
time and the vehicle's captured_at the newest measurement time of the merged dataset: the delivery
is the postman, captured_at is the date on the letter. Automations acting on momentary values
(such as charging.power) should check captured_at before trusting them.
| EU Data Act field | CarConnectivity attribute | Notes |
|---|---|---|
mileage.value / mileage |
vehicle.odometer |
unit from mileage.unit |
outside_temperature |
vehicle.outside_temperature |
deci-Kelvin → °C |
locked / lock_state |
vehicle.doors.lock_state |
|
open_state_* (per door) |
vehicle.doors[*].open_state |
front/rear L/R, bonnet, tailgate |
locked_state_* (per door) |
vehicle.doors[*].lock_state |
|
position_*_window_lifter (fallback state_*_window_lifter) |
vehicle.windows[*].open_state |
opening % → closed / ajar / open; incl. sunroof |
window_heating_state (+ _front / _rear) |
vehicle.window_heatings (overall + per element) |
|
parking_lights |
vehicle.lights[parking].light_state |
|
parking_brake |
vehicle.parking_brake |
1 → engaged, 0 → released; requires a core with parking_brake, skipped on older cores |
cruising_range_combined |
vehicle.drives.total_range (km) |
| EU Data Act field | CarConnectivity attribute | Notes |
|---|---|---|
maintenance_interval__time_until_inspection |
maintenance.inspection_due_at |
signed countdown → due date |
maintenance_interval__time_until_oil_change |
maintenance.oil_service_due_at |
|
maintenance_interval_distance_until_* |
maintenance.*_due_after (km) |
|
remaining_climate_time / remaining_climatisation_time |
climatization.estimated_date_reached |
seconds (dotted) / minutes (flat) |
| EU Data Act field | CarConnectivity attribute | Notes |
|---|---|---|
battery_state_report.soc / state_of_charge / battery_level_HV.value |
drive.level (%) |
battery_level_HV is the fallback when the named SoC fields are absent (reduced MEB deliveries) |
range / cruising_range_secondary_engine |
drive.range (km) |
|
long_term_data_average_electr_engine_consumption |
drive.consumption |
kWh/1000km → kWh/100km |
min_temperature / max_temperature |
battery.temperature_min / temperature_max (°C) |
| EU Data Act field | CarConnectivity attribute | Notes |
|---|---|---|
fuel_level_current_level / tank_current_level |
drive.level (%) |
|
cruising_range_primary_engine |
drive.range (km) |
|
long_term_data_average_fuel_consumption |
drive.consumption |
L/1000km → L/100km |
scr_range |
drive.adblue_range (km) |
diesel / SCR |
oil_level_actual_level |
drive.oil_level (%) |
requires a carconnectivity core with oil_level; skipped on older cores |
| EU Data Act field | CarConnectivity attribute | Notes |
|---|---|---|
battery_state_report.charge_power |
charging.power (kW) |
|
charging_state_report.current_charge_state / charging_state |
charging.state |
|
charging_state_report.charge_type / charging_mode |
charging.type (AC / DC / off) |
|
battery_state_report.charge_rate (+ unit) |
charging.rate (km/h or mph) |
|
…remaining_charging_time_complete / remaining_charging_time |
charging.estimated_date_reached |
|
settings.target_soc |
charging.settings.target_level (%) |
|
plug_state |
charging.connector.connection_state |
|
external_power_supply_state |
charging.connector.external_power |
These portal fields have no native CarConnectivity model, so they are left as the connector's "unmapped sensor" log entries rather than forced into an ill-fitting attribute:
- Tyre pressures (
tyre_pressure_actual/required/differential_*) — no tyre-pressure model. - Instrument-cluster warnings (
active_warnings_in_instrument_cluster_*) — no warning model; the value is also a latched hex bitmask that does not clear reliably. - Oil level extras (
oil_level_additional_oil_level,oil_level_dipstick_indicator_function,oil_level_total_max) — VW-specific quirks with no native model; the actual oil level (oil_level_actual_level) is mapped todrive.oil_level(see above). - Trip statistics (
short_/long_term_data_*: average speed, trip mileage, travel time, recuperation, aux/gas consumption, zero-emission distance) — no trip-statistics model. - "Safe" / secured states (
safe_state_*),state_spoiler,state_service_hatch,state_of_hood,bem_level,energy_flow— no attribute. - Exact window opening percentage — used to derive the window
open_state(closed / ajar / open), but theWindowmodel has no numeric position attribute, so the percentage itself is not stored. - Raw HV SoC (
hv_soc) — the displayed SoC is already mapped todrive.level. - Diagnostics / triggers (
echo,trueness,charging_state_error_code,window_heating_error_code,charging_reason_trigger,led_state/led_color,cng_gas_level,fuel_level__accuracy, …).
MIT