Quick Start Guide
Bootstrap your fleet telemetry pipelines inside your applications.
1. Obtain API Token
Navigate to the Console > Settings > API Keys to generate an operational read/write token.
2. Instantiate Telemetry Client
Add connection handlers to observe live geolocation metrics:
import { StompClient } from "@stomp/sdk";
const stomp = new StompClient({
token: "your-api-key"
});
stomp.connect();
stomp.on("vehicle:update", (event) => {
console.log(`Vehicle ${event.id} is at ${event.latitude}, ${event.longitude}`);
});3. Observe Map Console
Open the Live Map interface inside the dashboard to view moving vehicle vectors updated in real-time.