Supplementary charging data — voltage, current, and estimated time to full charge.
← Back to API Reference · Common Patterns
GET {base_url}/remote-control/vehicle/status/soc/{vin}?setting=charging| Parameter | Location | Required | Description |
|---|---|---|---|
vin |
Path | Yes | Vehicle VIN |
setting |
Query | Yes | Always charging |
Standard signed headers with authorization token.
{
"code": 1000,
"data": {
"chargeUAct": "7.2",
"chargeIAct": "32.0",
"timeToFullyCharged": "180"
}
}| Field | Type | Unit | Description |
|---|---|---|---|
chargeUAct |
string → float | V | Active charging voltage |
chargeIAct |
string → float | A | Active charging current |
timeToFullyCharged |
string → int | minutes | Estimated time to fully charged |
Enriches: VehicleStatus
| VehicleStatus Field | Source |
|---|---|
charge_voltage |
chargeUAct |
charge_current |
chargeIAct |
time_to_full |
timeToFullyCharged |
| Entity | Platform | Device Class | Unit |
|---|---|---|---|
charge_voltage |
sensor | voltage | V |
charge_current |
sensor | current | A |
time_to_full |
sensor | duration | min |
- Values are only meaningful when the vehicle is actively charging
- Returns
None/empty values when not charging - This endpoint supplements the main Vehicle Status endpoint
- Full Vehicle Status — Primary status endpoint
- Charging Reservation — Scheduled charging
- Source:
api.py → async_get_soc()