The
OWL DMS API provides a clean, reliable interface for accessing data from the OWL Mesh Network. Instead of dealing with the complexity of distributed data sources, you can use a single, consistent API to query and retrieve the information you need
This makes it easy to plug mesh-network data into your dashboards, analytics pipelines, or internal tools without needing to understand the underlying network architecture.
Every request returns a JSON payload, where each entry is itself a JSON object representing an individual message from the mesh. No protocol wrangling. No decoding headaches. Just structured data delivered in a predictable format. Here is an example of how the retrieved data will look like:
{
{
deviceId: 'PAPADUCK',
timestamp: '2025-11-30T17:08:54.137Z',
eventType: 'health',
payload: {
hops: 1,
Payload: {"voltage":3.65,"percentage":17,"charging":true,"temp":57.0},
DeviceID: 'DUCK0001',
duckType: 2,
MessageID: 'SB6W'
}
},
{
deviceId: 'PAPADUCK',
timestamp: '2025-11-30T17:08:54.137Z',
eventType: 'health',
payload: {
hops: 1,
Payload: {"voltage":3.65,"percentage":17,"charging":true,"temp":57.0},
DeviceID: 'DUCK1234',
duckType: 2,
MessageID: 'SB6W'
}
},
}