{
  "openapi": "3.1.0",
  "info": {
    "title": "Convertissima discovery & capabilities API",
    "version": "1.1.0",
    "description": "Convertissima performs conversion **only in the browser**. This specification documents static discovery endpoints and the machine-readable `capabilities` document. There are no authenticated file-conversion endpoints on this origin."
  },
  "servers": [{"url": "https://convertissima.online"}],
  "paths": {
    "/health.json": {
      "get": {
        "summary": "Site health ping",
        "responses": {"200": {"description": "OK"}}
      }
    },
    "/api/v1/capabilities.json": {
      "get": {
        "summary": "Declarative converter capabilities and limits",
        "description": "Static JSON mirrored from frontend limits (image + PDF tooling). Intended for integrations and autonomous agents—not for uploading files.",
        "responses": {
          "200": {
            "description": "Capability document",
            "content": {"application/json": {"schema": {"type": "object"}}}
          }
        }
      }
    }
  },
  "components": {},
  "x_convertissima": {
    "image_tool_entry": "/image/",
    "pdf_tool_entry": "/pdf/"
  }
}
