Quickstart
Send your first request to the ENLYZE API in a few steps.
Last updated
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.
Before you start:
You have access to the ENLYZE web app.
You have created an API key. See Manage API keys.
All endpoints of the current version are available under this base URL:
https://app.enlyze.com/api/v2
Pass your API key in the Authorization header using the Bearer scheme.
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
}
}Last updated