PushHub Documentation

Player engagement and push notification infrastructure for game studios. Register devices, build audiences, send campaigns, and measure delivery.

Quick start

Every request is authenticated. Server-to-server and SDK calls use an API key; dashboard sessions use a JWT.

curl -X POST https://api.pushhub.kemegames.com/api/v1/devices/register \
  -H "Authorization: ApiKey $PUSHHUB_API_KEY" \
  -H "X-App-Id: $PUSHHUB_APP_ID" \
  -H "Content-Type: application/json" \
  -d '{
    "deviceToken": "<fcm-or-apns-token>",
    "platform": "android",
    "userId": "player_1842"
  }'

Base URL: https://api.pushhub.kemegames.com/api/v1

Documentation