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.

2. Create a Channel

Channels are how you organize your notifications. Create one from the app or the dashboard.

3. Send a Notification

Use the API to send your first notification:

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

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

Next Steps