Search by serial number or MCU ID
Enter the serial number (QR code on the module label) or the MCU ID (readable from firmware), then click Find Load CAP Value.
If no result is found, your module is likely from the legacy series. Use the default value 18 (0x12).
The same data is available via REST. Provide exactly one of
serial or mcu_id as a query parameter.
curl "https://loadcap.miromico.ch/api/load-cap?serial=MM-123456"
curl "https://loadcap.miromico.ch/api/load-cap?mcu_id=AABBCCDD00112233"
200 OK
{
"data": {
"serial": "MM-123456",
"mcu_id": "AABB...",
"load_cap_value": 47,
"updated_at": "2025-01-15"
}
}
404
{"error": "not found"}
400
{"error": "exactly one lookup
parameter is required"}