ZeqEVBattery
EV battery management with HulyaPulse cell balancing. State of charge/health estimation, thermal runaway prediction, optimal charging curves via R(t) electrochemistry.
| Endpoint | POST /api/auto/ev-battery |
| Auth | api-key |
| Rate limit | 15/min |
| Category | automotive |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cellVoltages | array | Yes | Individual cell voltages [V]. |
temperatures | array | Yes | Cell temperatures [°C]. |
current_A | number | Yes | Pack current in Amps. |
Returns
{ soc_pct, soh_pct, thermalRunawayRisk, chargingCurve, cellImbalance_mV, zeqond }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"cellVoltages": [],
"temperatures": [],
"current_A": 0
}' \
"https://zeqsdk.com/api/auto/ev-battery"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-ev-battery.