🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

fiken.js

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fiken.js

TypeScript wrapper for the [Fiken API v2](https://api.fiken.no/api/v2/docs/).

latest
Source
npmnpm
Version
2.1.0
Version published
Maintainers
1
Created
Source

fiken.js

TypeScript wrapper for the Fiken API v2.

Install

npm install fiken.js

Usage

import Fiken from 'fiken.js';

const client = new Fiken({
	apiKey: process.env.FIKEN_API_KEY as string,
	companySlug: 'my-company-slug',
});

const companies = await client.getCompanies();
const accounts = await client.getAccounts({ page: 1, pageSize: 50 });
const invoices = await client.getInvoices({ page: 1, pageSize: 50 });

Implemented API areas

  • Companies and user info
  • Accounts, account balances, bank accounts, bank balances
  • Contacts, groups, products, transactions, journal entries
  • Invoices, credit notes, offers, order confirmations
  • Sales, purchases, inbox, projects
  • Time entries, activities, time users

Development

npm install
npm run check
npm run build

Scripts

  • npm run lint - eslint for src/**/*.ts
  • npm run typecheck - TypeScript compile checks
  • npm run test - Jest tests
  • npm run build - build distributable package
  • npm run check - typecheck + lint + test

FAQs

Package last updated on 09 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts