Skip to main content
GET
/
health
Status da plataforma
curl --request GET \
  --url https://api.wappfy.com.br/health
import requests

url = "https://api.wappfy.com.br/health"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.wappfy.com.br/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.wappfy.com.br/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.wappfy.com.br/health"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.wappfy.com.br/health")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.wappfy.com.br/health")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "status": "healthy",
  "uptime": 123456,
  "timestamp": "2024-01-01T00:00:00.000Z"
}

Descrição

Este endpoint permite verificar se a API da Wappfy está online e funcionando corretamente. É útil para monitoramento de disponibilidade e healthchecks automatizados.

Resposta

status
string
required
Status atual da plataforma
  • healthy - A plataforma está operacional
uptime
number
required
Tempo de atividade do servidor em segundos
timestamp
string
required
Data e hora da verificação no formato ISO 8601
{
  "status": "healthy",
  "uptime": 123456,
  "timestamp": "2024-01-01T00:00:00.000Z"
}

Códigos de Status

  • 200 - A plataforma está operacional
  • 503 - A plataforma está indisponível

Exemplo de Uso

curl -X GET https://api.wappfy.com.br/health
const response = await fetch('https://api.wappfy.com.br/health');
const data = await response.json();
console.log(data);
import requests

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