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

{
    "id": "cllld08g00001ky08yqf5qdozson"
}

Take a look at how you might call this method using different languages, or via curl:

curl https://api.usewuf.com/v1/push  
    -d apiKey='aeZVV0aaUA8y0Dqij_ptna'  
    -d userKey='uswXhaoDan2maAerZK9HZV'  
    -d title='New message received'  
    -d description='Hey, how are you doing?'
    -d emoji='💬'
    -d url='https://mychat.app/user/john'  

Last updated