Getting Started

Send your first push notification in under 2 minutes.

1. Download the App

Get PushTower from the App Store and create an account. Signing up automatically sets up your personal organization — there’s nothing extra to configure.

2. Create a Channel

Channels are how you organize your notifications within your organization. Create one from the app or the dashboard, then subscribe your devices to it — each phone, tablet, or Mac subscribes independently, with no per-device charge.

3. Send a Notification

Use the API to send your first notification:

curl -X POST https://send.pushtower.com/my-channel \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "title": "Hello from PushTower!",
    "body": "Your first notification is working."
  }'

That’s it. Your phone should buzz within seconds.

Next Steps