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
Getting Started

Installation

Install the Ondara SDK for your platform. Each SDK is designed to feel native to its environment.

Unity
Unity 2020.3 LTS+
v2.1.0

Installation Steps

  1. 1.Open Unity Package Manager (Window > Package Manager)
  2. 2.Click the + button and select 'Add package from git URL'
  3. 3.Enter: https://github.com/ondara/unity-sdk.git
  4. 4.Wait for the package to download and import

Command / URL

https://github.com/ondara/unity-sdk.git
View Unity Documentation
Unreal
Unreal Engine 5.0+
v1.5.0

Installation Steps

  1. 1.Download the plugin from Unreal Marketplace (coming soon)
  2. 2.Copy to your project's Plugins folder
  3. 3.Enable the plugin in Edit > Plugins
  4. 4.Restart the editor

Command / URL

Coming soon - Join waitlist
View Unreal Documentation
Godot
Godot 4.0+
v1.2.0

Installation Steps

  1. 1.Open AssetLib in Godot Editor
  2. 2.Search for 'Ondara'
  3. 3.Download and install the addon
  4. 4.Enable in Project > Project Settings > Plugins

Command / URL

Coming soon - Join waitlist
View Godot Documentation
Web / Node.js
Node.js 18+ or modern browser
v3.0.0

Installation Steps

  1. 1.Install via npm or yarn
  2. 2.Import the SDK in your code
  3. 3.Initialize with your API key

Command / URL

npm install @ondara/sdk
View Web / Node.js Documentation
iOS / Android
iOS 14+ / Android API 24+
v2.0.0

Installation Steps

  1. 1.Add the dependency to your project
  2. 2.Sync your project files
  3. 3.Initialize the SDK in your app delegate / application class

Command / URL

pod 'Ondara' | implementation 'io.ondara:sdk:2.0.0'
View iOS / Android Documentation

Verify Installation

After installation, verify the SDK is working by initializing and checking the version:

1Debug.Log($"Ondara SDK v{Ondara.Version}");
2await Ondara.Initialize("YOUR_API_KEY");
3Debug.Log("Ondara initialized successfully!");
Quick StartConfiguration