---
title: "API root"
description: "API metadata endpoint."
section: "API reference"
url: https://dravo.dev/docs/api/root
---
# API root

Small metadata endpoint for manual checks. Use [Health](/docs/api/health) for
orchestrators and uptime probes.

#### `GET /`

API metadata root. Useful for a quick manual check that you reached the Dravo API.

**Auth:** None

Response `200`: API metadata.

```json
{
  "name": "Dravo API",
  "version": "0.1.0",
  "docs": "/docs"
}
```

Response body `200` — API metadata.

| Field | Type | Description |
| --- | --- | --- |
| `name` | string | API name. |
| `version` | string | Running API version. |
| `docs` | string | Path to the interactive OpenAPI docs. |
