Skip to main content

Healthcheck

GET https://infrahub-api.nexgencloud.com/v1/object-storage/healthz

Perform a health check on the Object Storage service to verify availability and operational status. This endpoint is typically used for monitoring or automated systems to confirm that the service is online and functioning correctly.


Parameters


No parameters.


Attributes


The response includes a simple status string:

Show attributes
status string

Indicates the current status of the Object Storage system. Typically returns "ok" when the service is healthy.

Example request
curl -X GET "https://infrahub-api.nexgencloud.com/v1/object-storage/healthz" \
-H "accept: application/json" \
-H "api_key: YOUR API KEY"
  • Include an api_key in the header to authenticate your request. Learn more
Response
{
"status": "ok"
}

Returns


Returns a simple status indicator to confirm the Object Storage service is reachable and functioning properly.


Back to top