Skip to content

Health check

GET
/api/v1/catalogs/health
curl --request GET \
--url https://example.com/api/v1/catalogs/health

Checks Databricks Unity Catalog connectivity.

X-Environment-Id
Any of:
string

Successful Response

Media typeapplication/json
HealthCheckResponse

Response for health check.

object
status
required
Status
string
databricks_connection
required
Databricks Connection
string
catalogs_accessible
Any of:
integer
message
required
Message
string
error
Any of:
string
Examplegenerated
{
"status": "example",
"databricks_connection": "example",
"catalogs_accessible": 1,
"message": "example",
"error": "example"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}