News System

News System

Publish in-game news and announcements to all players without a new app release

Get Started Free

Instant Delivery

Posts go live the moment you publish — no app update or deployment needed to reach your players.

Multilingual Support

Write news in multiple languages so players always read announcements in their preferred language.

Rich Scheduling

Schedule posts in advance and let horizOn publish them automatically at the right time.

Quick Integration

Quick Integration

horizOn: News Feed

Game News

C#
// Unity C# - News Feed
using HorizOn;

var horizon = new HorizonClient("YOUR_API_KEY");

// Fetch latest news (localized)
var articles = await horizon.News.GetNews("en", 10);

foreach (var article in articles.Items) {
    Debug.Log($"[{article.Title}] {article.Message}");
}

// Fetch news in German
var deArticles = await horizon.News.GetNews("de", 5);
REST
# REST API - News Feed

# Fetch latest news in English (limit 10)
curl -X GET "https://eu.horizon.pm/api/v1/app/news?languageCode=en&limit=10" \
  -H "X-API-Key: YOUR_API_KEY"

# Fetch news in German (limit 5)
curl -X GET "https://eu.horizon.pm/api/v1/app/news?languageCode=de&limit=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.