Skip to main content
GET
/
api
/
v1
/
apps
/
{id}
/
health
Check if an app's URL is live by verifying actual content is served, and probe the underlying service and port status.
curl --request GET \
  --url https://api.rigbox.dev/api/v1/apps/{id}/health \
  --header 'Authorization: Bearer <token>'
{
  "live": true,
  "port_open": true,
  "service_status": "<string>",
  "port_drift": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.rigbox.dev/llms.txt

Use this file to discover all available pages before exploring further.

Use this before surfacing an app URL in your UI to confirm the service is actually responding.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

App ID

Response

200 - application/json

App health

live
boolean
required

Whether the app responded to an HTTP probe.

port_open
boolean
required

Whether the expected port is listening inside the workspace.

service_status
string
required

Systemd service status (e.g. "active", "inactive", "unknown", "unmanaged").

port_drift
boolean

True when the service is active but the expected port is not listening.