Relay handles your real-time communication needs, so you can focus on building smarter, faster systems for IoT, chat, live polls, and more—all with global latency under 100ms.
Ensure every message reaches its destination. Our infrastructure delivers data reliably, so nothing is lost in transit—even during spikes or unexpected outages.
Keep users engaged with near-instant updates. Our global infrastructure delivers real-time responses in under 100 milliseconds, ideal for chat, IoT, and live dashboards.
Handle heavy traffic with ease. Designed to support millions of concurrent connections, our infrastructure is ready for any growth or high-demand scenario.
Protect sensitive data from prying eyes. All communications are fully encrypted from sender to receiver, ensuring complete privacy and security.
Simple Pub/Sub with Minimal Code
realtime = Realtime({
"api_key": "<KEY>",
"secret": "<KEY>"
})
realtime.init()
def on_message(data):
print(data)
# Application logic....
# Listen to a topic
await realtime.on("power_telemetry", on_message)
# Publish to a topic
await realtime.publish("acc_data", {
"acc_x": 1,
"acc_y": 0,
"acc_y": 0.5
})
var realtime = new Realtime({
"api_key": "<KEY>",
"secret": "<KEY>"
})
realtime.init()
// Subscribe to a topic
await realtime.on("power_telemetry", (data) => {
console.log(data);
// Application logic...
});
// Publish to a topic
await realtime.on("acc_data", {
"acc_x": 1,
"acc_y": 0,
"acc_x": 0.5
});
Relay powers real-time communications across multiple domains
Visualize factory floor metrics in real time on Grafana or build your own visualization tool!
** The needs to be installed in Grafana manually. We have submitted our plugin to Grafana for review. After approval, you can effortlessly install it via the Grafana UI without needing to use the command line.
Create score dashboards that show scores in real time!
** The plugin needs to be installed in Grafana manually. We have submitted our plugin to Grafana for review. After approval, you can effortlessly install it via the Grafana UI without needing to use the command line.