System / Health

Health Check

Check the health and operational status of the Neutron API. Returns service availability, database connectivity, and system metrics. Use this endpoint for uptime monitoring, health checks in container orchestration, or debugging connectivity issues.

GET {baseAPIUrl}/health

Authentication

Not Required: This endpoint does not require authentication and can be called without an API key.

Response

FieldTypeDescription
statusstringAPI status ("ok" when healthy)
timestampstringISO 8601 timestamp of the check
uptimenumberServer uptime in seconds
environmentstringCurrent environment (e.g., "development", "production")
versionstringAPI version
servicesobjectStatus of individual services (api, database)
services.api.statusstringAPI service status
services.database.statusstringDatabase service status
services.database.connectedbooleanDatabase connection state

Use Cases

Load Balancer Health Checks

Configure your load balancer to ping this endpoint to determine instance health.

Monitoring and Alerting

Set up automated monitoring to detect API outages and database connectivity issues.

Connection Verification

Verify API connectivity before making authenticated requests.

Try It