API root

View .md

API metadata endpoint.


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.

namestring

API name.

versionstring

Running API version.

docsstring

Path 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"}