Apprise Details
The following services are supported by this Apprise instance.
To see a listing that identifies all of Apprise services available to this version (enabled or not) click here.
- chevron_rightApprise Version: 1.4.5
-
001 chevron_rightAWS Simple Email Service (SES)
AWS Simple Email Service (SES)
-
002 chevron_rightAWS Simple Notification Service (SNS)
AWS Simple Notification Service (SNS)
-
003 chevron_rightApprise API
Apprise API
-
004 chevron_rightBark
Bark
-
005 chevron_rightBoxcar
Boxcar
-
006 chevron_rightBulkSMS
BulkSMS
-
007 chevron_rightBurst SMS
Burst SMS
-
008 chevron_rightCisco Webex Teams
Cisco Webex Teams
-
009 chevron_rightClickSend
ClickSend
-
010 chevron_rightD7 Networks
D7 Networks
-
011 chevron_rightDapnet
Dapnet
-
012 chevron_rightDingTalk
DingTalk
-
013 chevron_rightDiscord
Discord
-
014 chevron_rightE-Mail
E-Mail
-
015 chevron_rightEmby
Emby
-
016 chevron_rightEnigma2
Enigma2
-
017 chevron_rightFaast
Faast
-
018 chevron_rightFirebase Cloud Messaging
Firebase Cloud Messaging
-
019 chevron_rightFlock
Flock
-
020 chevron_rightForm
Form
-
021 chevron_rightGitter
Gitter
-
022 chevron_rightGoogle Chat
Google Chat
-
023 chevron_rightGotify
Gotify
-
024 chevron_rightGrowl
Growl
-
025 chevron_rightGuilded
Guilded
-
026 chevron_rightHomeAssistant
HomeAssistant
-
027 chevron_rightIFTTT
IFTTT
-
028 chevron_rightJSON
JSON
-
029 chevron_rightJoin
Join
-
030 chevron_rightKavenegar
Kavenegar
-
031 chevron_rightKodi/XBMC
Kodi/XBMC
-
032 chevron_rightKumulos
Kumulos
-
033 chevron_rightLaMetric
LaMetric
-
034 chevron_rightLine
Line
-
035 chevron_rightMQTT Notification
MQTT Notification
-
036 chevron_rightMSG91
MSG91
-
037 chevron_rightMSTeams
MSTeams
-
038 chevron_rightMailgun
Mailgun
-
039 chevron_rightMastodon
Mastodon
-
040 chevron_rightMatrix
Matrix
-
041 chevron_rightMattermost
Mattermost
-
042 chevron_rightMessageBird
MessageBird
-
043 chevron_rightMisskey
Misskey
-
044 chevron_rightNextcloud
Nextcloud
-
045 chevron_rightNextcloud Talk
Nextcloud Talk
-
046 chevron_rightNotica
Notica
-
047 chevron_rightNotifico
Notifico
-
048 chevron_rightOffice 365
Office 365
-
049 chevron_rightOneSignal
OneSignal
-
050 chevron_rightOpsgenie
Opsgenie
-
051 chevron_rightPager Duty
Pager Duty
-
052 chevron_rightPagerTree
PagerTree
-
053 chevron_rightParse Platform
Parse Platform
-
054 chevron_rightPopcornNotify
PopcornNotify
-
055 chevron_rightProwl
Prowl
-
056 chevron_rightPushbullet
Pushbullet
-
057 chevron_rightPushed
Pushed
-
058 chevron_rightPushjet
Pushjet
-
059 chevron_rightPushover
Pushover
-
060 chevron_rightPushsafer
Pushsafer
-
061 chevron_rightReddit
Reddit
-
062 chevron_rightRocket.Chat
Rocket.Chat
-
063 chevron_rightRyver
Ryver
-
064 chevron_rightSMS Eagle
SMS Eagle
-
065 chevron_rightSMTP2Go
SMTP2Go
-
066 chevron_rightSendGrid
SendGrid
-
067 chevron_rightServerChan
ServerChan
-
068 chevron_rightSignal API
Signal API
-
069 chevron_rightSimplePush
SimplePush
-
070 chevron_rightSinch
Sinch
-
071 chevron_rightSlack
Slack
-
072 chevron_rightSparkPost
SparkPost
-
073 chevron_rightSpontit
Spontit
-
074 chevron_rightStreamlabs
Streamlabs
-
075 chevron_rightTechulus Push
Techulus Push
-
076 chevron_rightTelegram
Telegram
-
077 chevron_rightTwilio
Twilio
-
078 chevron_rightTwist
Twist
-
079 chevron_rightTwitter
Twitter
-
080 chevron_rightVoIPms
VoIPms
-
081 chevron_rightVonage
Vonage
-
082 chevron_rightWhatsApp
WhatsApp
-
083 chevron_rightXML
XML
-
084 chevron_rightZulip
Zulip
-
085 chevron_rightntfy
ntfy
API Endpoints
Developers who wish to receive this result set in a JSON parseable string for their application can perform the following to achive this:
-
codeCurl Example
#Retrieve JSON Formatted Apprise Details
curl -H "Accept: application/json" \
"https://apprise.apps.merit.edu/details/" -
codePython Example
import json
from urllib.request import Request
# The URL
req = Request(
"https://apprise.apps.merit.edu/details/",
json.dumps(payload).encode('utf-8'),
{"Accept": "application/json"},
method='GET',
) -
codePHP Example
<?php
// The URL
$url = 'https://apprise.apps.merit.edu/details/';
//Initiate cURL.
$ch = curl_init($url);
//Set the content type to application/json
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: application/json'));
//Execute the request
$result = curl_exec($ch);
More details on the JSON format can be found here.