Skip to main content
Use this endpoint to check whether the Virtus Cloud platform is fully operational, experiencing degraded performance, or unavailable. The response is derived from the platform’s internal health checks and can help you decide whether to retry failed requests or surface a status banner in your application.

Request

GET https://api.virtuscloud.app/v2/service/status
This endpoint does not require authentication and caches its response for 5 minutes. The cached result may not immediately reflect changes shown on status.virtuscloud.app.

Response

status
string
The current operational status of the Virtus Cloud platform. Possible values:
  • "online" — all services are operating normally.
  • "degraded" — one or more services are experiencing issues.
  • "unknown" — the status could not be determined.
message
string
A human-readable description of the current platform status, suitable for displaying in a status page or alert banner.

Examples

curl -X GET https://api.virtuscloud.app/v2/service/status

Response Example

{
  "status": "online",
  "message": "All services are online."
}