Leaderboards

Leaderboards

Ranked player leaderboards that plug into any game engine in minutes

Get Started Free

One-Call Score Submission

Submit a player score with a single SDK method and horizOn handles ranking, deduplication, and persistence.

Contextual Rankings

Fetch global top entries or the entries surrounding a specific player to show them their standing.

Zero Infrastructure

horizOn manages all storage, indexing, and query performance so you never touch a database.

Quick Integration

Quick Integration

Rhythm Masters

Song Complete!

YOUR SCORE

12,450

C#
// Unity C# - Leaderboard
using HorizOn;

var horizon = new HorizonClient("YOUR_API_KEY");

// Submit score
await horizon.Leaderboard.SubmitScore(userId, 15000);

// Get top 10
var top = await horizon.Leaderboard.GetTop(userId, 10);
foreach (var entry in top.Entries) {
    Debug.Log($"#{entry.Rank} {entry.DisplayName}: {entry.Score}");
}

// Get rank around player
var around = await horizon.Leaderboard.GetAround(userId, 5);
REST
# REST API - Leaderboard

# Submit a score
curl -X POST https://eu.horizon.pm/api/v1/app/leaderboard/submit \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"userId":"USER_ID","score":15000}'

# Get top 10 entries
curl -X GET "https://eu.horizon.pm/api/v1/app/leaderboard/top?userId=USER_ID&limit=10" \
  -H "X-API-Key: YOUR_API_KEY"

# Get entries around a player
curl -X GET "https://eu.horizon.pm/api/v1/app/leaderboard/around?userId=USER_ID&range=5" \
  -H "X-API-Key: YOUR_API_KEY"
Frequently Asked Questions

Frequently Asked Questions

Ready to Integrate?

Start building with horizOn today. Free tier included.