Files
authentik/website/api/clients/node.md
T
Marc 'risson' Schmitt ef1d0b0279 packages/client-ts: init (#21120)
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
2026-03-26 13:34:48 +01:00

787 B

title, sidebar_label, description
title sidebar_label description
Node.js API Client Node.js A TypeScript client for the authentik API.

The Node.js API client is generated using the OpenAPI Generator and the OpenAPI v3 schema.

npm install @goauthentik/api

Usage

import { AdminApi, Configuration } from "@goauthentik/api";

const config = new Configuration({
    basePath: "authentik.company/api/v3",
});

const status = await new AdminApi(DEFAULT_CONFIG).adminSystemRetrieve();

Building the Node.js Client

The web client is used by the web-interface and web-FlowExecutor to communicate with authentik. To build the client, run make gen-client-ts.