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/employees
POST/api/v1/jobs
GET/api/v1/interviews
POST/api/v1/payroll/run
GET/api/v1/time/entries
GET/api/v1/analytics/headcount

Code 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.

Ready to Integrate?

Explore our full API documentation and start building.

View Documentation