Overview
The Enzo platform uses Bearer token authentication for all API requests. You’ll need to include your API token in theAuthorization header of each request.
Obtaining an API Token
- Log into the Enzo Dashboard
- Navigate to Settings → Developer
- Create a new API key or copy an existing one
Making Authenticated Requests
HTTP Header Format
Include your API token in the Authorization header:Example Requests
Using Node.js (fetch)
Using cURL
Error Handling
If authentication fails, you’ll receive a401 Unauthorized response. Common causes include:
- Missing the Authorization header
- Invalid token format
- Expired or revoked token
- Insufficient permissions for the requested resource