> For the complete documentation index, see [llms.txt](https://docs.enlyze.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enlyze.com/enlyze-api/schnellstart.md).

# Schnellstart

Die ENLYZE API gibt dir programmatischen Zugriff auf alle Daten der ENYLZE Plattform. Diese Seite führt dich von der Authentifizierung bis zur ersten erfolgreichen Anfrage.

## Voraussetzungen

Bevor du startest:

* Du hast Zugriff auf die ENLYZE Web App.
* Du hast einen API-Key erstellt. Siehe [API-Keys verwalten](/administration/api-keys.md).

## Basis-URL

Alle Endpunkte der aktuellen Version sind unter dieser Basis-URL erreichbar:

`https://app.enlyze.com/api/v2`

## Erste Anfrage senden

1. Übergib deinen API-Key im `Authorization`-Header nach dem `Bearer`-Schema.
2. Sende eine `GET`-Anfrage an einen List-Endpunkt, zum Beispiel `/machines`.

```bash
curl https://app.enlyze.com/api/v2/machines \
  -H "Authorization: Bearer DEIN_API_KEY"
```

Eine erfolgreiche Anfrage liefert Statuscode `200` und die Daten im `data`-Feld:

```json
{
  "data": [
    { "uuid": "3f2a…", "name": "…" }
  ],
  "metadata": {
    "next_cursor": null
  }
}
```

## Nächste Schritte

* [Authentifizierung](/enlyze-api/authentifizierung.md)
* [Pagination](/enlyze-api/pagination.md)
* [API-Referenz](/enlyze-api/api-referenz.md)
