Skip to content
sinspired edited this page Jan 1, 2026 · 49 revisions

Note

Apprise Vercel 是一个无服务器极简通知服务,它的主要设计目的是消除不同通知服务使用上的不一致。通过利用一个简单的 URL 字符串,你可以向 Bark、Ntfy、Telegram、Email、钉钉、企业微信100+ 目标发送通知。

Preview

API

curl -X POST "https://您的域名/notify" \
  -H "Content-Type: application/json" \
  -d '{
    "urls": "tgram://BOT_TOKEN/CHAT_ID, mailto://user:pass@gmail.com",
    "title": "服务器警告",
    "body": "检测到 CPU 使用率过高!",
    "type": "warning",
    "format": "text"
  }'

Clone this wiki locally