Open API & integrations

Claned fits your stack — API, LTI, SSO and SCORM

Claned exposes a public REST API so it's a building block in your systems, not a silo. Provision users from your HR system, enroll them into the right courses, and pull progress, completions, skills and certificates back into your own tools — no manual exports. Standard integrations — LTI, single sign-on and SCORM — connect it to the LMS and identity tools you already run.

Book a demo
# Provision a learner and enroll them — from your HR system
curl -X POST https://app.claned.com/api/v1/users \
  -H "Authorization: Token <api-token>" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "emma.korhonen@acme.com",
    "first_name": "Emma",
    "last_name": "Korhonen",
    "board_ids": [9215, 9234]
  }'

# → 201 Created
{ "id": 27988, "email": "emma.korhonen@acme.com", "invited": true }
REST
token-authenticated JSON API
2-way
push users in, pull results out
PATCH /api/v1/users/27988
{ "board_ids": [9215, 9234, 9240], "active": true }

DELETE /api/v1/boards/9215/members/27988

Manage users and enrollments

Create, update and deactivate users from your HRIS or identity provider, send invitations, and enroll people into the right boards and groups automatically as roles change — so access always matches reality.

GET /api/v1/users/27988/passport

{
  "skills_earned": 12,
  "skills": [
    { "esco": "manage a team",  "certificate_id": 8842 },
    { "esco": "fire safety regulations", "certificate_id": 8843 }
  ],
  "study_time_minutes": 486,
  "completed_boards": [9234, 9240]
}

Pull progress, results and skills

Read completions, assessment results, study time, ESCO skills and issued certificates back into your data warehouse, HR system or BI dashboards — the same data the analytics show, wherever your organization already reports from.

# Launch from your LMS over LTI  →  learner lands in their feed
# Single sign-on: SAML / OpenID Connect (incl. Microsoft Entra ID)
# SCORM packages run inside a board

Connect through LTI, SSO and SCORM

Beyond the REST API, standard integrations connect Claned to the tools you already run: launch courses from an LMS over LTI, let people sign in with single sign-on (SAML / OpenID Connect, including Microsoft Entra ID), and run SCORM packages inside a board.

// Single sign-on: drop learners straight into their feed
const url = signedSsoUrl({
  org: "acme",
  email: user.email,
  return_to: "/en/feed",
});
window.location.href = url;

White-label and embed

Combine the API with white-labelling to make Claned feel like a native part of your own product or academy — your brand on the outside, Claned's learning engine and learner feed underneath.

See Claned on your own content

Book a 30-minute demo. We'll show the learner feed, the competence passport and the analytics on a course like yours.

Book a demo