Skip to content

API Endpoints

This section details the available endpoints for the Apprise API.

You can perform status or health checks on your server configuration.

PathMethodDescription
/statusGETReturns a server status. The server HTTP response code is 200 if working correctly, or 417 if there is an issue.

Response Examples:

  • Text: OK (if healthy) or ATTACH_PERMISSION_ISSUE, CONFIG_PERMISSION_ISSUE.

  • JSON:

    {
    "attach_lock": false,
    "config_lock": false,
    "status": {
    "persistent_storage": true,
    "can_write_config": true,
    "can_write_attach": true,
    "details": ["OK"]
    }
    }

Send notifications without using persistent storage.

PathMethodDescription
/notify/POSTSends one or more notifications to the URLs identified in the payload or via APPRISE_STATELESS_URLS.

Payload Parameters:

  • urls: (Required) One or more URLs to send to.
  • body: (Required) The message body.
  • title: (Optional) The message title.
  • type: (Optional) Message type: info (default), success, warning, failure.
  • format: (Optional) Text format: text (default), markdown, html.

Manage and use saved configurations associated with a {KEY}.

PathMethodDescription
/add/{KEY}POSTSaves Apprise configuration to the persistent store. Payload: urls, config, format.
/del/{KEY}POSTRemoves Apprise configuration from the persistent store.
/get/{KEY}POSTReturns the Apprise configuration. Alias: /cfg/{KEY} (web UI uses this).
/notify/{KEY}POSTSends notifications to endpoints associated with {KEY}. Payload: body (required), title, type, tag, format.
/json/urls/{KEY}GETReturns a JSON object containing all URLs and tags associated with the key.
PathMethodDescription
/detailsGETRetrieve a JSON object containing all supported Apprise URLs (send Accept: application/json).
/metricsGETPrometheus endpoint for basic metrics collection.

For a full list (including UI-only codes and common error responses), see Response Codes.