Protocol-agnostic output. Any format you need.
Cloud-Scale captures weight data from any source (RS232, TCP/IP, display OCR) and outputs in any format you need:
The Cloud-Scale REST API provides programmatic access to weight data, device management, and analytics.
https://api.cloud-scale.us/v1
API requests require a bearer token in the Authorization header:
Authorization: Bearer YOUR_API_KEY
List all scales associated with your account.
Get the current weight reading from a scale.
Get historical weight readings with optional time range filters.
{
"scale_id": "scale-001",
"weight": 5000.00,
"unit": "lb",
"status": "STABLE",
"timestamp": "2026-02-09T04:30:00Z",
"confidence": 0.99
}
Receive real-time notifications when weights are captured or status changes.
{
"event": "weight.captured",
"scale_id": "scale-001",
"data": {
"weight": 5000.00,
"unit": "lb",
"status": "STABLE",
"timestamp": "2026-02-09T04:30:00Z"
}
}
| Event | Description |
|---|---|
weight.captured | A stable weight was captured |
weight.changed | Weight value changed (motion detected) |
scale.online | Scale came online |
scale.offline | Scale went offline |
scale.error | Scale reported an error |
Scale Streamer outputs an ONVIF-compliant RTSP video stream with weight overlay.
rtsp://{device_ip}:554/stream
| Parameter | Value |
|---|---|
| Codec | H.264 |
| Resolution | 1920x1080 (configurable) |
| Frame Rate | 30 fps (configurable) |
| Bitrate | 2-4 Mbps (configurable) |
Connect directly to Cloud-Scale devices over TCP for raw weight data.
TCP {device_ip}:5000
Configure the device to output in any protocol your system expects:
5000 LB G
Cloud Scale Transport creates a virtual COM port on Windows that connects to TCP scales over the network.
Cloud-Scale is protocol-agnostic. We read from any source and output in any format.
| Protocol | Source |
|---|---|
| RS232 Serial | Direct connection to scale indicator |
| TCP/IP | Network-enabled scales |
| Display OCR | Camera reading (Scale Streamer Vision) |
| Format | Use Case |
|---|---|
| REST API / JSON | Modern web applications, ERP integration |
| Webhooks | Event-driven systems, automation |
| MQTT | IoT platforms, real-time dashboards |
| RTSP Video | NVR/VMS, security systems |
| TCP Socket | Custom integrations |
| Virtual COM | Legacy software (via Transport) |
| RS232 | Legacy hardware |
Structured weight data ready for AI/ML applications.
Every weight reading includes structured metadata for AI consumption:
{
"scale_id": "scale-001",
"scale_name": "Truck Scale - Main Gate",
"weight": 45280.5,
"unit": "lb",
"status": "STABLE",
"timestamp": "2026-02-09T04:30:00.123Z",
"confidence": 0.99,
"source": "vision_ocr",
"metadata": {
"facility_id": "facility-001",
"location": "Main Gate",
"tags": ["inbound", "truck"]
}
}