{
  "openapi": "3.1.0",
  "info": {
    "title": "WalletGuard Public API",
    "version": "1.0.0",
    "description": "Read-only discovery and education endpoints for WalletGuard. Hash verification is performed in the visitor's browser; this API does not accept wallet binaries."
  },
  "servers": [{"url": "https://walletguard.cc"}],
  "paths": {
    "/health.json": {
      "get": {
        "summary": "Service health",
        "responses": {"200": {"description": "OK"}}
      }
    },
    "/api/v1/catalog.json": {
      "get": {
        "summary": "Trust principles and links to catalog, verify tool, guides",
        "responses": {
          "200": {
            "description": "Static catalog document",
            "content": {"application/json": {"schema": {"type": "object"}}}
          }
        }
      }
    }
  }
}
