Skip to content

Get Lineage Service Health

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

Check lineage service health and system tables connectivity.

Returns: Health status of the lineage tracking service and system tables access.

X-Environment-Id
Any of:
string

Successful Response

Media typeapplication/json
LineageHealthCheck

Health check response for lineage services.

object
status
required
Status
string
lineage_api_available
required
Lineage Api Available
boolean
system_tables_accessible
required
System Tables Accessible
boolean
last_sync_time
Any of:
string format: date-time
error_message
Any of:
string
total_tables_tracked
Any of:
integer
Examplegenerated
{
"status": "example",
"lineage_api_available": true,
"system_tables_accessible": true,
"last_sync_time": "2026-04-15T12:00:00Z",
"error_message": "example",
"total_tables_tracked": 1
}

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"
}
]
}