GET v1/meter/instant?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
InstantMeterReadingsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Date | date |
None. |
|
| Voltage1 | decimal number |
None. |
|
| Voltage2 | decimal number |
None. |
|
| Voltage3 | decimal number |
None. |
|
| Current1 | decimal number |
None. |
|
| Current2 | decimal number |
None. |
|
| Current3 | decimal number |
None. |
|
| TotalEnergy | decimal number |
None. |
|
| DayEnergy | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Date": "2025-05-20T06:34:01.2591449+01:00",
"Voltage1": 1.0,
"Voltage2": 1.0,
"Voltage3": 1.0,
"Current1": 1.0,
"Current2": 1.0,
"Current3": 1.0,
"TotalEnergy": 1.0,
"DayEnergy": 1.0
}
application/xml, text/xml
Sample:
<InstantMeterReadingsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/I9P.MeterMonitor.API.Models"> <Current1>1</Current1> <Current2>1</Current2> <Current3>1</Current3> <Date>2025-05-20T06:34:01.2591449+01:00</Date> <DayEnergy>1</DayEnergy> <TotalEnergy>1</TotalEnergy> <Voltage1>1</Voltage1> <Voltage2>1</Voltage2> <Voltage3>1</Voltage3> </InstantMeterReadingsModel>