Skip to main content
Monitoring Tips
  • No authentication required
  • Returns 200 OK when healthy
  • Include current server timestamp
  • Use for health checks and status pages
GET
/
v1
/
health
Health check
curl --request GET \
  --url https://api.peepal.dev/v1/health
{
  "status": "<string>",
  "time": "2023-11-07T05:31:56Z"
}
Check the API health status. This endpoint requires no authentication and can be used for monitoring and uptime checks.
curl -X GET "https://api.peepal.dev/v1/health"
{
  "status": "ok",
  "time": "2025-12-31T10:00:00.000Z"
}

Response

200 - application/json

Service is healthy

status
string
required
time
string<date-time>
required