infakt-sdk

Introduction

TypeScript SDK for the inFakt.pl API

TypeScript SDK for the inFakt.pl API, generated from the official Postman collection.

Installation

npm install infakt-sdk

Quick start

import { InfaktClient, createInfaktModules } from "infakt-sdk";

const client = new InfaktClient({
  credentials: {
    apiKey: process.env.INFAKT_API_KEY!,
  },
});

const api = createInfaktModules(client);

See Authentication and Usage for details.

On this page