Quick Start
Welcome to Wuf, the mobile push notifications platform.
Wuf is the easiest way to send and receive mobile push notifications, both on iOS and Android devices. We support wearable devices too!
To send a mobile notification, you need an API key and a User key. Let's see how to obtain them.
Get the API key
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key by creating a new app on the Wuf Dashboard, by clicking on the Create app button.
Install the mobile apps
We have mobile apps for iOS devices (iPhone, and iPad) and for Android devices.
Once installed, you'll get a User Key.
Get the User Key
A User key identifies a Wuf receiver account, and it is shared across different devices if the user logs in with the same account.
You and the users can get the User Key by installing the mobile app for iOS or Android.
The User Key will appear just after the Sign-in page on the first installation.
After that, the User Key will be accessible from the settings page, by clicking on the three dots icon.
Make your first request
To make your first request, send an authenticated request to the push endpoint.
Send push notification
POST https://api.usewuf.com/v1/push
Request Body
apiKey*
string
Your app API key
userKey*
string
The User Key (one between userKey or userGroupKey is required)
title*
string
Notification title
body*
string
Notification body
emoji
String
Emoji to be shown in the title and as icon in the Wuf app
image
String
Optional image to be included in the notification
url
String
Optional URL, shown in the Wuf app
userGroupKey*
string
The User Group Key (one between userKey or userGroupKey is required)
Take a look at how you might call this method using different languages, or via curl:
PHP
Last updated