AeroModel

AeroModel

Documentation

GET /v1/health

Worker availability probe. Public, no API key required.

Request

GET /v1/health HTTP/1.1
Host: api.aeromodel.dash-systems.fr
curl https://api.aeromodel.dash-systems.fr/v1/health

Response 200 OK

{
  "ok": true,
  "runtime": "cloudflare-workers",
  "stage": "production",
  "timestamp": "2026-04-30T12:34:56.000Z"
}
FieldDescription
okAlways true if the Worker is up
runtimeRuntime name (cloudflare-workers in prod, node-local in dev)
stageproduction, staging, or dev
timestampISO 8601 UTC, generated at request time

Use cases

  • Healthcheck for Kubernetes / Uptime Robot / Pingdom.
  • Verify deployment after npm run deploy.
  • Detect outages or DNS issues.

Examples

curl https://api.aeromodel.dash-systems.fr/v1/health
(Invoke-WebRequest -Uri "https://api.aeromodel.dash-systems.fr/v1/health").Content
const ok = (await fetch("https://api.aeromodel.dash-systems.fr/v1/health")).ok;