For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quickstart

Send your first request to the ENLYZE API in a few steps.

The ENLYZE API gives you programmatic access to all the data of the ENLYZE Platform. This page takes you from authentication to your first successful request.

Prerequisites

Before you start:

  • You have access to the ENLYZE web app.

  • You have created an API key. See Manage API keys.

Base URL

All endpoints of the current version are available under this base URL:

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

Send your first request

  1. Pass your API key in the Authorization header using the Bearer scheme.

  2. Send a GET request to a list endpoint, for example /machines.

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

A successful request returns status code 200 and the data in the data field:

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

Next steps

Last updated