Apprise Details

The following services are supported by this Apprise instance.

To see a simplified listing that only identifies the Apprise services enabled click here.

Total plugin(s) supported: 137

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/?all=yes"
  • codePython Example
    import json
    from urllib.request import Request

    # The URL
    req = Request(
        "https://apprise.m7sin.duckdns.org/details/?all=yes",
        json.dumps(payload).encode('utf-8'),
        {"Accept": "application/json"},
        method='GET',
    )
  • codePHP Example
    <?php

    // The URL
    $url = 'https://apprise.m7sin.duckdns.org/details/?all=yes';

    //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.