Data OpenStream API Reference
The Connection Information
Host:
sensecap-openstream.seeed.cc
Port:
1883
forMQTT
, or8083
forMQTT Over WebSocket
ClientID:
org-<Organization ID>-<Random ID>
, replace<Orgnization ID>
with you got from dashboard, and replace<Random ID>
with you randomly generated Numbers and lowercase letters.Username:
org-<Organization ID>
, replace<Organization ID>
with you got from dashboard.Password: Is your organization access key.
Publish And Subscribe Model
SenseCAP OpenStream API implements "Publish And Subscribe Model", as the MQTT protocol does. You can connect your server to SenseCAP OpenStream API through MQTT or MQTT over WebSocket to communicate with the standard pub-sub protocol.
You can "publish" commands to platforms or devices and "subscribe" to receive messages. "subscribe" is the most common way to continuously monitor the telemetry data from devices.
Message Topic
Receive All Devices' Telemeasuring Data
Topic: /device_sensor_data/<OrgID>/+/+/+/+
Receive Specified Device's Telemeasuring Data
Topic Format: /device_sensor_data/<OrgID>/<DeviceEUI>/<Channel>/<SensorEUI>/<MeasurementID>
Field
Description
OrgID
DeviceEUI
The device EUI
Channel
A physical socket on the device for a sensor to be connected
SensorEUI
The sensor's ID
MeasurementID
"+"
means that there is no filtering condition for this field, matching all possible configurations. So, "/+/+/+/+" means to listen for all "<DeviceEUI>", "<Channel>", "<SensorEUI>", "<MeasurementID>"
Topic can specify filtering conditions to implement listening on specified devices, channels and telemeasuring data types. For example, you can only listen for Device whose device ID is "2F000000000000", then you can replace the <DeviceEUI>
field with 2F000000000000
The "2F000000000000" in this example must be a device that you have already bound to your account. And you should always remember to replace
<OrgID>
with your own "Organization ID".
Message Body
New Telemeasuring Data
This is a sensor telemeasuring data message uploaded by a device, which conforms to the JSON format and can be parsed by JSON parser. In general, for most functional requirements, a body needs to be used in conjunction with some fields in the topic.
Field
Description
value
Sensor's Measurement Value
timestamp
Time to measure data, unit millisecond
Last updated