DEVELOPERS
Build with the Ergonik API
Integrate HR intelligence into your applications with our RESTful API.
RESTful API
JSON-based REST API with versioned endpoints, comprehensive documentation, and SDKs for popular languages.
Authentication
Secure access via OAuth 2.0 or API keys. All requests require authentication.
Key Endpoints
GET
/api/v1/employeesPOST
/api/v1/jobsGET
/api/v1/interviewsPOST
/api/v1/payroll/runGET
/api/v1/time/entriesGET
/api/v1/analytics/headcountCode Samples
cURL
curl -X GET https://api.ergonik.ai/v1/employees \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Python
import requests
response = requests.get(
"https://api.ergonik.ai/v1/employees",
headers={"Authorization": "Bearer YOUR_API_KEY"}
)
employees = response.json()
print(f"Found {len(employees['data'])} employees")Webhooks
Subscribe to real-time events: employee.created, interview.completed, payroll.processed, leave.requested, and more.