1.0.5 • Published 6 months ago

czech-ares-gov v1.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

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 NameDescription
getCompanyByIc(ic: string): Company \| nullReturns a company for given IC, if no found returns null
searchCompaniesByName({ name:string, limit:number, offset:number }): CompaniesThis 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 });
}
1.0.5

6 months ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago