Skip to main content
GET
/
app
/
health
Check the mobile app router health
curl --request GET \
  --url https://handauncle-backend-prod-205012263523.asia-south1.run.app/app/health
{
  "success": true,
  "data": {
    "service": "app",
    "status": "healthy",
    "endpoints": {
      "launch": "GET /app/launch"
    },
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "requestId": "<string>"
  }
}
Lightweight readiness probe for the mobile-facing service. It is typically used by monitoring, alerting and mobile smoke tests to ensure the /app router is reachable before attempting a launch cycle.

Response contract

  • data.service: Always app for this router.
  • data.status: healthy when the route is serving requests.
  • data.endpoints.launch: Convenience link for the app launch route.
  • data.timestamp: ISO 8601 server time, useful for clock skew checks.

Example request

curl https://api.handauncle.com/app/health

Response

Router is up and serving traffic.

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object
required