SnapeditAPI
Đăng nhậpBắt đầu miễn phí
Đăng nhập
API Reference

Health check

Returns the health status of all Snapedit services. No authentication required.

get/v1/health

AuthorizationThis endpoint requires an API key. Pass it in the api-key header on every request. Learn more

Responses

All services healthy

FieldTypeDescription
statusstring
checksobject
workerstring
upstreamstring
backendstring
kvstring
timestampstring
curl -X GET "https://api.snapedit.app/v1/health" \
  -H "api-key: YOUR_API_KEY"
Response
{
  "status": "healthy",
  "checks": {
    "worker": "ok",
    "upstream": "ok",
    "backend": "ok",
    "kv": "ok"
  },
  "timestamp": "2026-04-28T10:00:00Z"
}