Build overlays, analytics dashboards, hardware controllers, and companion apps. We did the hard part already.
import { GameGlue } from '@gameglue/sdk'
const client = new GameGlue({
apiKey: process.env.GAMEGLUE_KEY,
game: 'msfs'
})
// Subscribe to real-time telemetry
client.on('telemetry', (data) => {
console.log(data.altitude) // 35420
console.log(data.airspeed) // 487
console.log(data.heading) // 274.5
})
client.connect()
Why GameGlue
Works from anywhere. Users install the GameGlue client, your app connects to our cloud. We handle the extraction.
Motion rigs, button boxes, and LED controllers need low latency. Turbo mode connects directly on the local network.
Standard OAuth2 flow. Users authorize your app, you get scoped access to their telemetry. No passwords, no tokens to manage.
Every game's telemetry is normalized to typed schemas. FlightTelemetry, RacingTelemetry, SpaceTelemetry. SDKs that don't suck.
Ship your app to GameGlue's marketplace. Discovery, user management, and payments handled. Focus on building.
Subscribe once, receive updates as they happen. No polling, no missed data. Just a clean event stream.
Supported Games
OPEN BETAWe're launching with Microsoft Flight Simulator. More games on the roadmap.
Data Schemas
Every game maps to category-specific schemas. Same property names, same units, same types across all games in a category.
interface FlightTelemetry {
altitude: number // feet
airspeed: number // knots
heading: number // degrees
pitch: number // degrees
bank: number // degrees
verticalSpeed: number // fpm
latitude: number
longitude: number
gear: boolean
flaps: number // 0-1
// ...
}
interface RacingTelemetry {
speed: number // m/s
rpm: number
gear: number
throttle: number // 0-1
brake: number // 0-1
steering: number // -1 to 1
lapTime: number // ms
lapNumber: number
position: number
fuel: number // liters
// ...
}
interface SpaceTelemetry {
shipName: string
system: string
body: string
latitude: number
longitude: number
altitude: number
fuel: number
cargo: number
docked: boolean
landed: boolean
// ...
}
Pricing
Get your API key in 30 seconds. No credit card required.