
內容簡介
Updawa 是一款輕量級的 WordPress 監控外掛,專為開發者、系統管理員和代理商設計。它提供安全的 REST API 端點,讓使用者能夠輕鬆檢查網站健康狀態,並無需依賴繁重的第三方管理工具。
【主要功能】
• 安全的 REST API 端點,提供網站狀態的 JSON 快照
• 256 位元隨機令牌保護 API 安全
• 自動檢查 SSL 證書的到期日期
• 美觀的本地控制台,顯示更新和 SSL 狀態
• QR 碼整合,輕鬆導入 API 憑證
• Android 應用程式,隨時監控網站狀態
外掛標籤
開發者團隊
② 後台搜尋「Updawa – WordPress Update & SSL Monitoring API」→ 直接安裝(推薦)
原文外掛簡介
Tired of heavy, bloated SaaS management tools? Updawa is a lightweight, headless monitoring plugin built for developers, sysadmins, and agencies.
Instead of forcing you into a proprietary third-party dashboard, Updawa turns your WordPress site into a secure data node. It gives you a clean admin dashboard to check site health instantly, while exposing a secure REST API endpoint that you can poll from any external monitoring tool, custom script, or mobile app.
Whether you manage one site or a hundred, Updawa is the perfect API-first alternative to heavy management plugins.
Why Choose Updawa?
Headless & Flexible: Build your own dashboard using Grafana, custom Node/Python scripts, or your agency’s proprietary software.
100% Private (No SaaS Lock-in): Zero external dependencies. Your data never leaves your server. No pings to third-party tracking services.
Ultra-Lightweight: Only runs when queried. No background bloat, database clutter, or heavy admin scripts.
Key Features
Secure REST API Endpoint: Fetch a full JSON snapshot of your site’s status via GET /wp-json/updawa/v1/status.
Bearer Token Security: The API is protected by a 256-bit cryptographically random token that you can regenerate or revoke at any time.
SSL Certificate Monitoring: Automatically checks your site’s HTTPS endpoint and reports the exact expiry date and days remaining.
Beautiful Local Dashboard: View pending update counts (Core, Plugins, Themes) and SSL status with intuitive colour-coded badges.
QR Code Integration: Easily import your API credentials into mobile monitoring apps via the bundled (zero-dependency) QR generator.
Android App: Monitor all your Updawa-enabled sites from your pocket, with push notifications for expiring SSLs and pending updates. Download on Google Play.
JSON View: See your site’s full API payload directly in the backend with a one-click Copy button.
Zero External Dependencies: The QR code library is fully bundled and runs locally in your browser. No data is sent to external servers.
REST API
The endpoint is read-only and dead simple to use. Just pass your Bearer token:
curl -H "Authorization: Bearer YOUR_TOKEN" https://example.com/wp-json/updawa/v1/status
Example JSON response:
{
"generated_at": "2026-04-14T09:10:41+00:00",
"wordpress": {
"current_version": "7.1",
"update_available": false,
"new_version": null,
"package_url": null
},
"plugins": [ ... ],
"themes": [ ... ],
"ssl_expires_at": "2026-07-05T01:48:00+00:00"
}
