czech-ares-gov
v1.0.4
Published
Returns data about Czech companies from ARES (Goverment)
Downloads
26
Maintainers
Readme
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 });
}