> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wappfy.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Platform Status

> Check the Wappfy platform status

## 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

<ResponseField name="status" type="string" required>
  Current platform status

  * `healthy` - The platform is operational
</ResponseField>

<ResponseField name="uptime" type="number" required>
  Server uptime in seconds
</ResponseField>

<ResponseField name="timestamp" type="string" required>
  Date and time of the check in ISO 8601 format
</ResponseField>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "status": "healthy",
    "uptime": 123456,
    "timestamp": "2024-01-01T00:00:00.000Z"
  }
  ```
</ResponseExample>

## Status Codes

* `200` - The platform is operational
* `503` - The platform is unavailable

## Usage Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET https://api.wappfy.com.br/health
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.wappfy.com.br/health');
  const data = await response.json();
  console.log(data);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get('https://api.wappfy.com.br/health')
  data = response.json()
  print(data)
  ```
</CodeGroup>
