Backend Status
Returns the health status of all backend services.
Description
This endpoint checks project hosts and returns an array with one status object per project host.
Authentication
None. This endpoint is public.
Request
No request body required.
Example
1curl -X GET "https://api.hola.cloud/v0/status"
Response
1[
2 {
3 "id": "project-123",
4 "name": "My Project",
5 "host": "my-project.hola.cloud",
6 "status": 200,
7 "statusText": "200 OK"
8 }
9]
Error Codes
| Code | Description |
|---|---|
| 200 | Status information returned successfully |
Comments