Sistema de noticias

Sistema de noticias

Publique noticias e anuncios in-game para todos os jogadores sem necessidade de um novo lancamento da app

Comecar gratis

Entrega instantanea

As publicacoes ficam ativas no momento em que as publica, sem necessidade de atualizar a app ou fazer deploy para alcancar os seus jogadores.

Suporte multilingue

Escreva noticias em varios idiomas para que os jogadores leiam sempre os anuncios na sua lingua preferida.

Agendamento flexivel

Agende publicacoes com antecedencia e deixe o horizOn publica-las automaticamente no momento certo.

Integracao rapida

Integracao rapida

horizOn: Feed de noticias

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"
Perguntas frequentes

Perguntas frequentes

Pronto para integrar?

Comece a construir com o horizOn hoje. Tier gratuito incluido.