# MasterBot - Platform status Reference for AI assistants. Index: https://masterbot.gg/llms.txt ## Human status page (JavaScript SPA) - URL: https://masterbot.gg/status - Requires client-side JavaScript. Simple crawlers may only see a "Loading" shell. - **Do not scrape the SPA for status.** Use the machine-readable API below. ## Machine-readable status API (recommended) **Full snapshot (JSON):** ``` GET https://api.masterbot.gg/api/v1/public/status-page ``` Returns the current public status page data: service health, active incidents, uptime history, and metadata used by the status UI. **Lightweight change detector:** ``` GET https://api.masterbot.gg/api/v1/public/status-page/revision ``` Use to check whether the snapshot changed without downloading the full payload. ## Field glossary (typical JSON shape) Exact fields may evolve; agents should parse the JSON response dynamically. | Concept | Meaning | |---------|---------| | **Services / components** | Named parts of the platform (e.g. API, bot runtime, dashboard). Each has a current status (operational, degraded, partial outage, major outage). | | **Incidents** | Active or historical outages with title, status (investigating, identified, monitoring, resolved), and timeline updates. | | **Uptime bars** | Historical availability per service over recent days. | | **Overall status** | Aggregate health shown at the top of the public page. | ## When to check status - User reports "MasterBot is down" or flows not executing platform-wide - Before blaming a user's bot token or flow logic, verify platform health via the API above - Changelog for product updates (separate from outages): https://masterbot.gg/changelog ## Related - Homepage: https://masterbot.gg/ - LLM index: https://masterbot.gg/llms.txt - Support: https://masterbot.gg/llms-support.txt