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.
Character Limit: 200
Title of the notification that will appear prominently in the user's app.
Character Limit: 2000
The body of the notification. Provide the necessary information.
Character Limit: 200
Ensure that the image URL is publicly accessible.
Credentials
Find these in your mobile app in api key tab. Keep them safe!
Send a simple notification with a title, message, and optional image..
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"
}'
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":""
}'