Socket
Socket
Sign inDemoInstall

ispis

Package Overview
Dependencies
13
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

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


Version published
Maintainers
1
Weekly downloads
3

Weekly downloads

Readme

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

FAQs

Last updated on 05 Oct 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc