czech-ares-gov
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

Czech ARES-GOV Package

The czech-ares-gov package is a convenient tool for retrieving information about Czech companies using their identification number (IC) or name. It interfaces with the Czech ARES-GOV API to provide accurate and up-to-date economic entity data.

Methods

Method Name Description
getCompanyByIc(ic: string): Company | null Returns a company for given IC, if no found returns null
searchCompaniesByName({ name:string, limit:number, offset:number }): Companies This methods returns companies based on search name

Example

import { getCompanyByIc, searchCompaniesByName } from "czech-ares-gov"; // Import the library

async function main() {
	const company = await getCompanyByIc("19187165");
	const companies = await searchCompaniesByName({ name: "Daemon Development", limit: 3, offset: 0 });
}

Package Sidebar

Install

npm i czech-ares-gov

Weekly Downloads

3

Version

1.0.4

License

MIT

Unpacked Size

44.7 kB

Total Files

13

Last publish

Collaborators

  • daemon-development