Your Complete Integration Guide
Everything you need to know about GameBack, organized by feature
🏁 Quick Start
Get your first GameBack integration running in under 5 minutes
🔐 Authentication
Secure player authentication with email, social logins, or device ID
🏆 Leaderboards
Create engaging leaderboards for daily, weekly, or all-time scores
⚡ Cloud Code
Extend your game with custom server-side logic in JavaScript/TypeScript
🎮 Matchmaking
Simple and flexible matchmaking to connect players quickly
📱 LiveOps
Manage live events and send in-game messages from the console
Built by developers, for developers
Our documentation is designed to get you up and running quickly. Clean examples, comprehensive guides, and everything you need to integrate GameBack seamlessly into your game.
Clear Examples
Copy-paste code examples for every feature
Step-by-Step Guides
Detailed tutorials from setup to deployment
Quick Reference
Find what you need fast with our API reference
// Initialize GameBack const gameback = new GameBack({ apiKey: "your-api-key", projectId: "your-project" }); // Authenticate player await gameback.auth.signIn({ email: "player@example.com" }); // Submit score await gameback.leaderboards .submit("global", 1000);