🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

ispis

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ispis

node.js client for [ispis.cz](https://ispis.cz/) to do background check of a person or company - written in TS ✔️ - handling authentication ✔️ - more friendly API ✔️ - normalized input data ✔️ - TODO: make batch API call - TODO: make downloadFile API call

latest
npmnpm
Version
2.0.0
Version published
Weekly downloads
8
60%
Maintainers
1
Weekly downloads
 
Created
Source

ispis

node.js client for ispis.cz to do background check of a person or company - written in TS ✔️ - handling authentication ✔️ - more friendly API ✔️ - normalized input data ✔️ - TODO: make batch API call - TODO: make downloadFile API call

Install

npm i ispis

Basic usage

// commonJS
const Ispis = require('ispis').default;
// ES6 modules
import Ispis from 'ispis';

const ispis = new Ispis({
    login: `<username>`, // xx@xx.cz - your sign up credentials
    password: `<password>` // xx@xx.cz - your sign up password
});

// ...
try {
    const data = await ispis.searchPerson({
      profile: "Devel", // Devel = development | CEE | CRE
      firstName: "Tomáš",
      lastName: "Novák",
      birthDate: new Date(`06.16.1975`),
    });

} catch (err) {

    console.error(err);
}

// ...
try {
    const data = await ispis.searchCompany({
      profile: "Devel",
      IC: "26185610"
    });
} catch (err) {

    console.error(err);
}

Keywords

ts

FAQs

Package last updated on 05 Oct 2021

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