Skip to main content
GET
/
api
/
v1
/
health
curl -X GET https://api.uncash.io/api/v1/health
{
  "success": true,
  "data": {
    "status": "healthy",
    "environment": "production",
    "timestamp": "2025-08-03T10:00:00.000Z",
    "uptime": 1722686400000
  },
  "message": "API is healthy"
}
This endpoint does not require authentication and can be used to verify API availability.

Response

success
boolean
Indicates if the API is healthy
data
object
message
string
Success message
curl -X GET https://api.uncash.io/api/v1/health
{
  "success": true,
  "data": {
    "status": "healthy",
    "environment": "production",
    "timestamp": "2025-08-03T10:00:00.000Z",
    "uptime": 1722686400000
  },
  "message": "API is healthy"
}
Monitoring: Use this endpoint for health checks, monitoring, and load balancer status verification. It provides a quick way to verify API availability.