Sistema de noticias

Sistema de noticias

Publique noticias y anuncios in-game para todos los jugadores sin necesidad de una nueva version de la app

Comenzar gratis

Entrega instantanea

Las publicaciones se activan en el momento en que las publica, sin necesidad de actualizar la app ni realizar despliegues para llegar a sus jugadores.

Soporte multilingue

Escriba noticias en varios idiomas para que los jugadores siempre lean los anuncios en su idioma preferido.

Programacion flexible

Programe publicaciones con antelacion y deje que horizOn las publique automaticamente en el momento adecuado.

Integracion rapida

Integracion rapida

horizOn: 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"
Preguntas frecuentes

Preguntas frecuentes

Listo para integrar?

Empiece a construir con horizOn hoy. Nivel gratuito incluido.