Motification.APP

Your SIMPLE Push Notification Application

Easy to use! Super-Sonic option to get real-time notifications!

Amazing Features

SIMPLE Integrations

Command Line

curl -s \
  --form-string "token=abc123" \
  --form-string "user=user123" \
  --form-string "message=hello world" \
  https://api.motification.app/1/messages.json

Python 3

import http.client, urllib
conn = http.client.HTTPSConnection("api.motification.net:443")
conn.request("POST", "/1/messages.json",
  urllib.parse.urlencode({
    "token": "abc123",
    "user": "user123",
    "message": "hello world",
  }), { "Content-type": "application/x-www-form-urlencoded" })
conn.getresponse()

Perl

use LWP::UserAgent;
use Mozilla::CA;

LWP::UserAgent->new()->post(
  "https://api.motification.net/1/messages.json", [
  "token" => "abc123",
  "user" => "user123",
  "message" => "hello world",
]);

PHP

curl_setopt_array($ch = curl_init(), array(
  CURLOPT_URL => "https://api.motification.net/1/messages.json",
  CURLOPT_POSTFIELDS => array(
    "token" => "abc123",
    "user" => "user123",
    "message" => "hello world",
  ),
  CURLOPT_SAFE_UPLOAD => true,
  CURLOPT_RETURNTRANSFER => true,
));
curl_exec($ch);
curl_close($ch);

Our Pricing Plans

FREE

$0.00/month

  • 30 messages per day
  • Sonic-fast delivery
  • Text-Only Messages

Standard

$0.99/month

    *FREE plan plus:

  • 100 messages per day
  • Daily motivational quotes
  • Lite Pack Integrations
  • Classified notifications

Premium

Best Choice

$9.99/month

    *Standard plan plus:

  • 300 messages per day
  • FULL Pack Integrations
  • Rich-Media messages
  • Critical alerts support
  • History access Web Panel

Ultimate

$49.99/month

    *Premium plan plus:

  • Enough messages per day
  • Location-ready messages
  • FULL API access
  • CRON automations
  • Remote service monitoring

Get in Touch