Real-Time Notification API Documentation

Integrate real-time notifications in your app with ease. Below are the details for sending normal and lead messages using our API.

API INSTANT Notifier

You can send notifications through our API to get real-time updates in your mobile app. Below are the details for sending normal and lead messages.

Important: Keep your Client ID and API Key secure, as they are used for authentication.

Submit A Test Notification

POST Parameters:
Title

Character Limit: 200

Title of the notification that will appear prominently in the user's app.

Message

Character Limit: 2000

The body of the notification. Provide the necessary information.

Image (Optional)

Character Limit: 200

Ensure that the image URL is publicly accessible.

Client ID & API Key

Credentials

Find these in your mobile app in api key tab. Keep them safe!

Sample Message API Notifier

Send a simple notification with a title, message, and optional image..

Message + Image API Request Example (cURL)

curl --location 'https://instantnotifier.phpmaster.in/api/notifications' \
                --header 'Content-Type: application/json' \
                --data '{
                  "client_id":"MZ3LuE8O60Y3zCeJttBXUVpnqy43",
                  "api_key":"XQehYb8WKEUcBcCw5fAbkwBViVSHiaHf",
                  "title":"Sample Title",
                  "message":"Hey, check out our latest updates!",
                  "image":"https://via.placeholder.com/150"
                }'

Lead Form Notification Example (cURL)

curl --location 'https://instantnotifier.phpmaster.in/api/notifications' \
                --header 'Content-Type: application/json' \
                --data '{
                  "client_id":"MZ3LuE8O60Y3zCeJttBXUVpnqy43",
                  "api_key":"XQehYb8WKEUcBcCw5fAbkwBViVSHiaHf",
                  "title":"Lead Form Submission",
                  "message":"Someone has requested a service: 🚀🚀🚀\nName: John Doe\nPhone: 123-456-7890\nEmail: john.doe@example.com",
                  "image":""
                }'
;;