GET
/
health
Platform Status
curl --request GET \
  --url https://api.wappfy.com.br/health
{
  "status": "healthy",
  "uptime": 123456,
  "timestamp": "2024-01-01T00:00:00.000Z"
}

Description

This endpoint allows you to verify if the Wappfy API is online and functioning correctly. It’s useful for availability monitoring and automated health checks.

Response

status
string
required
Current platform status
  • healthy - The platform is operational
uptime
number
required
Server uptime in seconds
timestamp
string
required
Verification date and time in ISO 8601 format
{
  "status": "healthy",
  "uptime": 123456,
  "timestamp": "2024-01-01T00:00:00.000Z"
}

Status Codes

  • 200 - The platform is operational
  • 503 - The platform is unavailable

Usage Example

curl -X GET https://api.wappfy.com.br/health