# MindKey Recruiting API Client

MindKey Recruiting API Client allows you to easily access your MindKey Recruiting data.

Please refer to the [documentation](https://developer.mindkey.com) for more information.

## Install

```bash
npm install @mindkey/recruiting-api-client
```

## Usage

```javascript
const { VacancyClient } = require('@mindkey/recruiting-api-client');

async function main() {
  const client = new VacancyClient('https://recruiting.mindkey.com/api');
  const result = await client.getSimpleVacancyList('<insert-your-customer-id-here>', 'en-US');

  console.log(result);
}

main();
```
