v1
health
Basic API Health Check
Perform a basic health check of the ReelAPI system.
Returns essential health status information including database connectivity, disk space availability, and API version. Use this endpoint for simple health monitoring and automated health checks.
get/api/v1/health
Response
Basic health status including database, disk space, and temperature
Example response
{
"description": "All systems operational with normal status",
"summary": "Healthy System",
"value": {
"database_connection": "ok",
"disk_space": "ok",
"raspi_hardware": {
"cpu": {
"frequency_mhz": 2400,
"is_throttled": false,
"max_frequency_mhz": 2400
},
"power": {
"input_voltage_v": 5.14,
"under_voltage_detected": false
},
"temperature": {
"status": "healthy",
"temperature_celsius": 59.7
}
},
"status": "healthy",
"version": "1.1.3"
}
}