Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/haekka-employees-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Haekka Public Employee Trainings Employees API
version: '1.0'
description: The Haekka Public API provides read access to a company's employees, trainings, and employee-training records, plus the ability to assign trainings to employees and update employee-training completion. Haekka is a Slack-native microlearning and security-awareness training platform. API keys are generated in Haekka account settings and passed as a bearer token.
contact:
name: Haekka Support
url: https://www.haekka.com/support
email: hello@haekka.com
x-provenance:
generated: '2026-07-19'
method: generated
source: https://www.haekka.com/documentation/haekka-public-api-documentation
note: Faithfully modeled from Haekka's published Public API documentation (routes, HTTP methods, bearer auth, and documented request fields). Field schemas are intentionally open (additionalProperties) where the docs do not enumerate response fields; nothing is fabricated.
servers:
- url: https://app.haekka.com/api/public
description: Haekka Public API
security:
- bearerAuth: []
tags:
- name: Employees
description: Company employees enrolled in Haekka.
paths:
/employees:
get:
operationId: listEmployees
tags:
- Employees
summary: List employees
description: Returns a list of all active employees in the company.
responses:
'200':
description: A list of active employees.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Employee'
'401':
$ref: '#/components/responses/Unauthorized'
/employees/{employee_id}:
get:
operationId: getEmployee
tags:
- Employees
summary: Get an employee
description: Retrieves employee data for a specific employee.
parameters:
- $ref: '#/components/parameters/EmployeeId'
responses:
'200':
description: The requested employee.
content:
application/json:
schema:
$ref: '#/components/schemas/Employee'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
components:
schemas:
Employee:
type: object
description: An active employee in the company.
properties:
id:
type: string
description: The unique id of the employee.
additionalProperties: true
responses:
NotFound:
description: The requested resource was not found.
Unauthorized:
description: Authentication is missing or the API key is invalid.
parameters:
EmployeeId:
name: employee_id
in: path
required: true
description: The id of the employee.
schema:
type: string
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: 'API key generated in Haekka account settings, passed as `Authorization: Bearer {key}`.'