Documentation Index
Fetch the complete documentation index at: https://info.bundle.social/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/v1/ returns the current API health object. It now includes platforms, where every supported platform has a current status and an internal note.
Use this endpoint to decide whether parts of your app should stay active, be disabled, or show a message before a user starts a flow that may fail.
Endpoint
Endpoint:GET /api/v1/
Platform Statuses
| Status | Meaning | Recommended behavior |
|---|---|---|
operational | Platform is working normally. | Keep features enabled. |
degraded | Platform is partially working or slower than usual. | Keep features available, but show a soft warning if the flow is user-visible. |
maintenance | Platform is intentionally paused or limited. | Disable the affected flow and let users try again later. |
outage | Platform is currently unavailable. | Disable actions that depend on this platform and avoid sending doomed requests. |
Recommended Polling
Poll this endpoint every 20 minutes from your backend or app shell. That is frequent enough to react to platform incidents without turning a health endpoint into unnecessary traffic. Avoid polling it before every single post, upload, or OAuth click. Cache the latest result and use it to guide your UI.Example Usage
GOOGLE_BUSINESS.status is outage, disable Google Business posting and review import buttons. If INSTAGRAM.status is degraded, you may keep publishing enabled but show a short message like “Instagram is slower than usual right now.”