/api/healthHealth endpoint
Use this endpoint to confirm the public Astramedica API surface is reachable. It exposes basic contact and catalog context only and does not include patient data or protected resources.
Returns a lightweight public status payload for agents and developers.
Short-lived public JSON response.
Response fields
ok (boolean)
True when the endpoint is healthy.
service (string)
Human-readable API surface name.
version (string)
Application version from package.json.
publicServices (number)
Count of published service pathways.
contact (object)
Public coordination contact details for follow-up questions.
Example response
{
"ok": true,
"service": "Astramedica Public API",
"version": "1.0.0",
"publicServices": 15,
"contact": {
"email": "info@astramedica.com",
"phone": "+1 202 500 5004"
}
}