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.
Total plugin(s) supported:
130
-
001 chevron_right 46elks
-
002 chevron_right Africas Talking
-
003 chevron_right Apprise API
-
004 chevron_right Aprs
-
005 chevron_right AWS Simple Email Service (SES)
-
006 chevron_right AWS Simple Notification Service (SNS)
-
007 chevron_right Bark
-
008 chevron_right BlueSky
-
009 chevron_right Brevo
-
010 chevron_right BulkSMS
-
011 chevron_right BulkVS
-
012 chevron_right Burst SMS
-
013 chevron_right Chanify
-
014 chevron_right Cisco Webex Teams
-
015 chevron_right Clickatell
-
016 chevron_right ClickSend
-
017 chevron_right D7 Networks
-
018 chevron_right Dapnet
-
019 chevron_right DingTalk
-
020 chevron_right Discord
-
021 chevron_right Dot.
-
022 chevron_right E-Mail
-
023 chevron_right Emby
-
024 chevron_right Enigma2
-
025 chevron_right Evolution API
-
026 chevron_right Exotel
-
027 chevron_right Feishu
-
028 chevron_right Firebase Cloud Messaging
-
029 chevron_right Flock
-
030 chevron_right Fluxer
-
031 chevron_right Form
-
032 chevron_right Free-Mobile
-
033 chevron_right Google Chat
-
034 chevron_right Gotify
-
035 chevron_right Growl
-
036 chevron_right Guilded
-
037 chevron_right HomeAssistant
-
038 chevron_right httpSMS
-
039 chevron_right IFTTT
-
040 chevron_right IRC
-
041 chevron_right Jellyfin
-
042 chevron_right Jira
-
043 chevron_right Join
-
044 chevron_right JSON
-
045 chevron_right Kavenegar
-
046 chevron_right Kodi/XBMC
-
047 chevron_right Kumulos
-
048 chevron_right LaMetric
-
049 chevron_right Lark (Feishu)
-
050 chevron_right Line
-
051 chevron_right Mailgun
-
052 chevron_right Mastodon
-
053 chevron_right Matrix
-
054 chevron_right Mattermost
-
055 chevron_right MessageBird
-
056 chevron_right Misskey
-
057 chevron_right MQTT Notification
-
058 chevron_right MSG91
-
059 chevron_right MSTeams
-
060 chevron_right Nextcloud
-
061 chevron_right Nextcloud Talk
-
062 chevron_right Notica
-
063 chevron_right Notifiarr
-
064 chevron_right NotificationAPI
-
065 chevron_right Notifico
-
066 chevron_right ntfy
-
067 chevron_right Octopush
-
068 chevron_right Office 365
-
069 chevron_right OneSignal
-
070 chevron_right Opsgenie
-
071 chevron_right Pager Duty
-
072 chevron_right PagerTree
-
073 chevron_right Parse Platform
-
074 chevron_right Plivo
-
075 chevron_right PopcornNotify
-
076 chevron_right Postmark
-
077 chevron_right Power Automate / Workflows (for MSTeams)
-
078 chevron_right Prowl
-
079 chevron_right Pushbullet
-
080 chevron_right PushDeer
-
081 chevron_right Pushed
-
082 chevron_right Pushjet
-
083 chevron_right PushMe
-
084 chevron_right Pushover
-
085 chevron_right Pushplus
-
086 chevron_right Pushsafer
-
087 chevron_right Pushy
-
088 chevron_right QQ Push
-
089 chevron_right Reddit
-
090 chevron_right Remote Syslog
-
091 chevron_right Resend
-
092 chevron_right Revolt
-
093 chevron_right Rocket.Chat
-
094 chevron_right Ryver
-
095 chevron_right SendGrid
-
096 chevron_right SendPulse
-
097 chevron_right ServerChan
-
098 chevron_right seven
-
099 chevron_right Signal API
-
100 chevron_right SIGNL4
-
101 chevron_right SimplePush
-
102 chevron_right Sinch
-
103 chevron_right Slack
-
104 chevron_right SMPP
-
105 chevron_right SMS Eagle
-
106 chevron_right SMS Manager
-
107 chevron_right SMTP2Go
-
108 chevron_right Société Française du Radiotéléphone
-
109 chevron_right SparkPost
-
110 chevron_right Spike.sh
-
111 chevron_right Splunk On-Call
-
112 chevron_right SpugPush
-
113 chevron_right Streamlabs
-
114 chevron_right Synology Chat
-
115 chevron_right Techulus Push
-
116 chevron_right Telegram
-
117 chevron_right Threema Gateway
-
118 chevron_right Twilio
-
119 chevron_right Twist
-
120 chevron_right Twitter
-
121 chevron_right Vapid Web Push Notifications
-
122 chevron_right Viber
-
123 chevron_right VoIPms
-
124 chevron_right Vonage
-
125 chevron_right WeCom Bot
-
126 chevron_right WhatsApp
-
127 chevron_right WxPusher
-
128 chevron_right XML
-
129 chevron_right XMPP
-
130 chevron_right Zulip
API Endpoints
Developers who wish to receive this result set in a JSON parseable string for their application can perform the following to achieve this:
-
codeCurl Example
#Retrieve JSON Formatted Apprise Details
curl -H "Accept: application/json" \
"https://apprise.m7sin.duckdns.org/details/" -
codePython Example
import json
from urllib.request import Request
# The URL
req = Request(
"https://apprise.m7sin.duckdns.org/details/",
json.dumps(payload).encode('utf-8'),
{"Accept": "application/json"},
method='GET',
) -
codePHP Example
<?php
// The URL
$url = 'https://apprise.m7sin.duckdns.org/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.