Skip to content

Latest commit

 

History

History
83 lines (57 loc) · 1.98 KB

File metadata and controls

83 lines (57 loc) · 1.98 KB

SOC / Charging Detail

Supplementary charging data — voltage, current, and estimated time to full charge.

← Back to API Reference · Common Patterns


Request

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

Headers

Standard signed headers with authorization token.


Response

{
  "code": 1000,
  "data": {
    "chargeUAct": "7.2",
    "chargeIAct": "32.0",
    "timeToFullyCharged": "180"
  }
}

Response Fields

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

Data Model

Enriches: VehicleStatus

VehicleStatus Field Source
charge_voltage chargeUAct
charge_current chargeIAct
time_to_full timeToFullyCharged

Related Entities

Entity Platform Device Class Unit
charge_voltage sensor voltage V
charge_current sensor current A
time_to_full sensor duration min

Notes

  • 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

Related