Then Apply ← Back to web-to-markdown
STATUS // web-to-markdown edge API

Service status

The API exposes an unauthenticated liveness probe at GET /salud. It is the same endpoint external monitors use. This page checks it from your browser and shows you the raw answer.

Checking…

Requesting GET /salud from your browser.

Open /salud directly

Verify it yourself

cURL / GET /salud
curl -i https://web-to-markdown.karlangas12.workers.dev/salud

What this endpoint reports

Request

  • Method: GET
  • Path: /salud
  • Auth: none — public probe
  • Quota: not metered

Response body

{
  "ok": true,
  "data": {
    "estado": "ok",
    "entorno": "production"
  }
}

What it does not tell you

/salud is a liveness probe: a 200 means the Worker is running and serving requests. It does not exercise the conversion path, the key store, or the rate limiter, so it is not a guarantee that every feature is healthy — only that the service is up and reachable. There is no historical uptime record behind this page; it reflects this moment only.

Copied to clipboard!