···2828 * [Maloja](/docsite/docs/configuration/configuration.md#maloja)
2929 * [Last.fm](/docsite/docs/configuration/configuration.md#lastfm)
3030 * [ListenBrainz](/docsite/docs/configuration/configuration.md#listenbrainz)
3131-* Monitor status of Sources and Clients using [webhooks (Gotify or Ntfy)](/docsite/docs/configuration/configuration.md#webhook-configurations) or [healthcheck endpoint](/docsite/docs/configuration/configuration.md#health-endpoint)
3131+* Monitor status of Sources and Clients using [webhooks (Gotify, Ntfy, Apprise)](/docsite/docs/configuration/configuration.md#webhook-configurations) or [healthcheck endpoint](/docsite/docs/configuration/configuration.md#health-endpoint)
3232* Supports configuring for single or multiple users (scrobbling for your friends and family!)
3333* Web server interface for stats, basic control, and detailed logs
3434* Graceful network and client failure handling (queued scrobbles that auto-retry)
+19
docsite/docs/configuration/configuration.md
···983983}
984984```
985985986986+### [Apprise](https://github.com/caronc/apprise-api)
987987+988988+Refer to the [config schema for AppriseConfig](https://json-schema.app/view/%23/%23%2Fdefinitions%2FAppriseConfig?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json)
989989+990990+multi-scrobbler supports [stateless](https://github.com/caronc/apprise-api?tab=readme-ov-file#stateless-solution) and [persistent storage](https://github.com/caronc/apprise-api?tab=readme-ov-file#persistent-storage-solution) endpoints as well as [tags](https://github.com/caronc/apprise-api?tab=readme-ov-file#tagging)/
991991+992992+EX
993993+994994+```json5
995995+{
996996+ "type": "apprise",
997997+ "name": "MyAppriseFriendlyNameForLogs",
998998+ "host": "http://192.168.0.100:8080",
999999+ "urls": ["gotify://192.168.0.101:8070/MyToken"], // stateless endpoints
10001000+ "keys": ["e90b20526808373353afad7fb98a201198c0c3e0555bea19f182df3388af7b17"], //persistent storage endpoints
10011001+ "tags": ["my","optional","tags"]
10021002+}
10031003+```
10041004+9861005## Health Endpoint
98710069881007An endpoint for monitoring the health of sources/clients is available at GET `http://YourMultiScrobblerDomain/health`
+1-1
docsite/src/pages/index.mdx
···3131 * [Maloja](docs/configuration#maloja)
3232 * [Last.fm](docs/configuration#lastfm)
3333 * [ListenBrainz](docs/configuration#listenbrainz)
3434-* Monitor status of Sources and Clients using [webhooks (Gotify or Ntfy)](docs/configuration#webhook-configurations) or [healthcheck endpoint](docs/configuration#health-endpoint)
3434+* Monitor status of Sources and Clients using [webhooks (Gotify, Ntfy, Apprise)](docs/configuration#webhook-configurations) or [healthcheck endpoint](docs/configuration#health-endpoint)
3535* Supports configuring for single or multiple users (scrobbling for your friends and family!)
3636* Web server interface for stats, basic control, and detailed logs
3737* Graceful network and client failure handling (queued scrobbles that auto-retry)