Docs
/Docs
Ctrl K
GitHubDashboard
IntroductionQuick StartInstallationConfigurationSelf-Hosting Guide
Unity SDK(soon)
Unreal SDK(soon)
Godot SDK(soon)
Web SDK
Mobile SDKs(soon)
Authentication(soon)
Player DataCloud Save
Leaderboards(soon)
Economy
Analytics(soon)
Remote Config
Push Notifications(soon)
Friends and Social(soon)
AB Testing(soon)
Player Segments(soon)
REST API
Authentication(soon)
Error CodesRate Limits
Webhooks(soon)
Migrating from Other Services(soon)
Best Practices(soon)
Security(soon)
Testing(soon)

Need help?

Join our Discord community for support and updates.

Join Discord

Welcome to Ondara Documentation

Everything you need to integrate Ondara Game Services into your game. Get started quickly with our SDKs, explore our services, and build amazing player experiences.

Quick Start

View Guide
Get Started in 5 Minutes
Initialize the SDK, authenticate a player, and start using our services.
1// Initialize Ondara SDK
2await Ondara.Initialize("your-api-key");
3
4// Authenticate player
5var player = await Ondara.Auth.LoginAnonymous();
6
7// Save player data
8await Ondara.PlayerData.Set("level", 1);
9
10Debug.Log($"Welcome, {player.DisplayName}!");

SDKs & Platforms

Unity
Full SDK with Editor integration
View Docs
Unreal
Blueprint & C++ support
View Docs
Godot
GDScript & C# bindings
View Docs
Web
TypeScript SDK
View Docs
Mobile
iOS & Android native
View Docs

Popular Services

Authentication
Player login with multiple providers
Learn More
Player Data
Store and sync player data
Learn More
Leaderboards
Rankings and high scores
Learn More
Economy
Currencies, items, and purchases
Learn More

API Reference

View API Docs
REST API
Complete REST API reference for direct integration or custom SDKs.

Additional Resources

Best Practices
Learn how to build scalable, secure game backends with Ondara.
Performance Tips
Optimize your integration for the best player experience.