Skip to main content
The /health endpoint confirms that the NaijaTaste API is up and accepting requests. It returns a minimal JSON object when the service is healthy. This endpoint is suitable for use in uptime monitors, load balancer health checks, and CI pipelines. It also supports HEAD requests, so you can verify reachability without receiving a response body.

Request

GET https://naijataste-api-vcp4.onrender.com/health
This endpoint accepts no parameters. It also accepts HEAD /health for monitors that only need an HTTP status code.

Response

status
string
required
Always "ok" when the API is healthy and accepting requests.

Example

curl "https://naijataste-api-vcp4.onrender.com/health"
Use HEAD /health in uptime monitors to reduce bandwidth — the server returns the same 200 OK status without sending a response body.