Periodic upload of real-time electrical telemetry (typically every 5
seconds during charging or discharging). Supports single-phase and
three-phase via the optional phase_details block.
Related: proposed component-level fields (contactor cycles, fan RPM, isolation tests, V2G inverter health) are described in Proposed Extensions.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/telemetry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"timestamp": "2025-03-15T10:30:05Z",
"connector_id": 1,
"state": "charging",
"voltage": 220.5,
"current": 32,
"power": 7.04,
"energy_delivered": 12.3,
"soc": 55,
"temperature": 35.2
}
'Documentation Index
Fetch the complete documentation index at: https://developers.telluspowergroup.com/llms.txt
Use this file to discover all available pages before exploring further.
Charger-side bearer token. Obtained by exchanging device_id and
device_secret (issued at registration) at /v1/device/token.
Valid for 24 hours.
x >= 1idle, charging, discharging, fault 0 <= x <= 100Show child attributes
Telemetry accepted.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/telemetry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"timestamp": "2025-03-15T10:30:05Z",
"connector_id": 1,
"state": "charging",
"voltage": 220.5,
"current": 32,
"power": 7.04,
"energy_delivered": 12.3,
"soc": 55,
"temperature": 35.2
}
'