Skip to main content
GET
/
health
curl https://worker.rushed.com.br/health
const res = await fetch('https://worker.rushed.com.br/health');
const { status } = await res.json();
console.log(status); // "ok"
{
  "status": "ok",
  "timestamp": "2026-03-28T18:30:00Z"
}

Description

Returns the current health status of the API. This is the only endpoint that does not require authentication.
curl https://worker.rushed.com.br/health
const res = await fetch('https://worker.rushed.com.br/health');
const { status } = await res.json();
console.log(status); // "ok"
{
  "status": "ok",
  "timestamp": "2026-03-28T18:30:00Z"
}