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.7.2
-
001 chevron_rightApprise API
Apprise API
-
002 chevron_rightAprs
Aprs
-
003 chevron_rightAWS Simple Email Service (SES)
AWS Simple Email Service (SES)
-
004 chevron_rightAWS Simple Notification Service (SNS)
AWS Simple Notification Service (SNS)
-
005 chevron_rightBark
Bark
-
006 chevron_rightBoxcar
Boxcar
-
007 chevron_rightBulkSMS
BulkSMS
-
008 chevron_rightBulkVS
BulkVS
-
009 chevron_rightBurst SMS
Burst SMS
-
010 chevron_rightCisco Webex Teams
Cisco Webex Teams
-
011 chevron_rightClickSend
ClickSend
-
012 chevron_rightD7 Networks
D7 Networks
-
013 chevron_rightDapnet
Dapnet
-
014 chevron_rightDingTalk
DingTalk
-
015 chevron_rightDiscord
Discord
-
016 chevron_rightE-Mail
E-Mail
-
017 chevron_rightEmby
Emby
-
018 chevron_rightEnigma2
Enigma2
-
019 chevron_rightFaast
Faast
-
020 chevron_rightFirebase Cloud Messaging
Firebase Cloud Messaging
-
021 chevron_rightFlock
Flock
-
022 chevron_rightForm
Form
-
023 chevron_rightGoogle Chat
Google Chat
-
024 chevron_rightGotify
Gotify
-
025 chevron_rightGrowl
Growl
-
026 chevron_rightGuilded
Guilded
-
027 chevron_rightHomeAssistant
HomeAssistant
-
028 chevron_righthttpSMS
httpSMS
-
029 chevron_rightIFTTT
IFTTT
-
030 chevron_rightJoin
Join
-
031 chevron_rightJSON
JSON
-
032 chevron_rightKavenegar
Kavenegar
-
033 chevron_rightKodi/XBMC
Kodi/XBMC
-
034 chevron_rightKumulos
Kumulos
-
035 chevron_rightLaMetric
LaMetric
-
036 chevron_rightLine
Line
-
037 chevron_rightMailgun
Mailgun
-
038 chevron_rightMastodon
Mastodon
-
039 chevron_rightMatrix
Matrix
-
040 chevron_rightMattermost
Mattermost
-
041 chevron_rightMessageBird
MessageBird
-
042 chevron_rightMisskey
Misskey
-
043 chevron_rightMQTT Notification
MQTT Notification
-
044 chevron_rightMSG91
MSG91
-
045 chevron_rightMSTeams
MSTeams
-
046 chevron_rightNextcloud
Nextcloud
-
047 chevron_rightNextcloud Talk
Nextcloud Talk
-
048 chevron_rightNotica
Notica
-
049 chevron_rightNotifiarr
Notifiarr
-
050 chevron_rightNotifico
Notifico
-
051 chevron_rightntfy
ntfy
-
052 chevron_rightOffice 365
Office 365
-
053 chevron_rightOneSignal
OneSignal
-
054 chevron_rightOpsgenie
Opsgenie
-
055 chevron_rightPager Duty
Pager Duty
-
056 chevron_rightPagerTree
PagerTree
-
057 chevron_rightParse Platform
Parse Platform
-
058 chevron_rightPopcornNotify
PopcornNotify
-
059 chevron_rightProwl
Prowl
-
060 chevron_rightPushbullet
Pushbullet
-
061 chevron_rightPushDeer
PushDeer
-
062 chevron_rightPushed
Pushed
-
063 chevron_rightPushjet
Pushjet
-
064 chevron_rightPushMe
PushMe
-
065 chevron_rightPushover
Pushover
-
066 chevron_rightPushsafer
Pushsafer
-
067 chevron_rightPushy
Pushy
-
068 chevron_rightReddit
Reddit
-
069 chevron_rightRemote Syslog
Remote Syslog
-
070 chevron_rightRocket.Chat
Rocket.Chat
-
071 chevron_rightRyver
Ryver
-
072 chevron_rightSendGrid
SendGrid
-
073 chevron_rightServerChan
ServerChan
-
074 chevron_rightSignal API
Signal API
-
075 chevron_rightSimplePush
SimplePush
-
076 chevron_rightSinch
Sinch
-
077 chevron_rightSlack
Slack
-
078 chevron_rightSMS Eagle
SMS Eagle
-
079 chevron_rightSMS Manager
SMS Manager
-
080 chevron_rightSMTP2Go
SMTP2Go
-
081 chevron_rightSparkPost
SparkPost
-
082 chevron_rightStreamlabs
Streamlabs
-
083 chevron_rightSynology Chat
Synology Chat
-
084 chevron_rightTechulus Push
Techulus Push
-
085 chevron_rightTelegram
Telegram
-
086 chevron_rightThreema Gateway
Threema Gateway
-
087 chevron_rightTwilio
Twilio
-
088 chevron_rightTwist
Twist
-
089 chevron_rightTwitter
Twitter
-
090 chevron_rightVoIPms
VoIPms
-
091 chevron_rightVonage
Vonage
-
092 chevron_rightWeCom Bot
WeCom Bot
-
093 chevron_rightWhatsApp
WhatsApp
-
094 chevron_rightXML
XML
-
095 chevron_rightZulip
Zulip
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" \
"http://5.161.64.138:8001/details/" -
codePython Example
import json
from urllib.request import Request
# The URL
req = Request(
"http://5.161.64.138:8001/details/",
json.dumps(payload).encode('utf-8'),
{"Accept": "application/json"},
method='GET',
) -
codePHP Example
<?php
// The URL
$url = 'http://5.161.64.138:8001/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.