Small metadata endpoint for manual checks. Use Health for orchestrators and uptime probes.
GET
/Public, no auth
API metadata root. Useful for a quick manual check that you reached the Dravo API.
namestringAPI name.
versionstringRunning API version.
docsstringPath to the interactive OpenAPI docs.
const response = await fetch("https://api.dravo.dev/", { method: "GET", headers: {}});const data = await response.json();console.log(data);{ "name": "Dravo API", "version": "0.1.0", "docs": "/docs"}