Learn how to integrate Ondara into your game. Our SDKs support all major game engines with full documentation and examples.
Everything you need to build, launch, and scale your game backend with Ondara.
Most commonly used backend services
See how easy it is to get started
12345678910111213141516171819202122using Ondara;using UnityEngine;
public class GameManager : MonoBehaviour{ async void Start() { // Initialize Ondara await Ondara.Initialize("YOUR_API_KEY"); // Authenticate player var player = await Ondara.Auth.LoginAnonymous(); Debug.Log($"Welcome, {player.DisplayName}!"); // Save player progress await Ondara.PlayerData.Set("level", 5); await Ondara.PlayerData.Set("coins", 1000); // Submit to leaderboard await Ondara.Leaderboards.Submit("high_scores", 5000); }}