Skip to main content
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 check if the Wappfy API is online and working correctly. It’s useful for availability monitoring and automated healthchecks.

Response

status
string
required
Current platform status
  • healthy - The platform is operational
uptime
number
required
Server uptime in seconds
timestamp
string
required
Date and time of the check 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
I