GET
/
v1
/
status
Python
from salad_cloud_imds_sdk import SaladCloudImdsSdk

sdk = SaladCloudImdsSdk(
    timeout=10000
)

result = sdk.metadata.get_status()

print(result)
{
  "ready": true,
  "started": true
}
Last Updated: May 10, 2025

Headers

Metadata
enum<string>
required

Required header to indicate metadata request

Available options:
true

Response

OK

The health statuses of the current container instance.

ready
boolean
required

true if the running container is ready. If a readiness probe is defined, this returns the latest result of the probe. If a readiness probe is not defined but a startup probe is defined, this returns the same value as the started property. If neither a readiness probe nor a startup probe are defined, returns true.

Examples:

true

started
boolean
required

true if the running container is started. If a startup probe is defined, this returns the latest result of the probe. If a startup probe is not defined, returns true.

Examples:

true