Getting Started
How to get an API key
To use the Emplyx Public API you need an API key. You can generate one in the Emplyx Admin panel under Settings > Public API.
Settings > Public API > Generate keyAuthentication
Every request must be authenticated with the X-Api-Key header. Never share your API key publicly.
X-Api-Key: emplyx_live_abc123...Making your first call
Include your API key in the X-Api-Key header on every request.
curl -X GET "https://developer.emplyx.com/api/v1/ping" \
-H "X-Api-Key: YOUR_API_KEY"